This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "frost-api",
"version": "0.4.0",
"description": "Frost API Server",
"private": true,
"main": "./src/index.js",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"start": "node ./",
"setup": "node ./ --setup",
"test:lint": "eslint ./src/**/*.js",
"test:mocha": "mocha -A --use_strict",
"test:mocha-watch": "mocha -w",
"test": "npm run test:lint && npm run test:mocha",
"versions": "echo mocha && mocha --version && echo eslint && eslint -v",
"generate-configs": "cp ./.configs/api-config.default.json ./.configs/api-config.json"
},
"author": "team FrostDevelop",
"license": "MIT",
"dependencies": {
"argv": "0.0.x",
"async-lock": "1.1.x",
"body-parser": "1.18.x",
"cafy": "4.0.x",
"compression": "1.7.x",
"cpx": "1.5.x",
"express": "4.16.x",
"file-type": "7.6.x",
"methods": "1.1.x",
"moment": "2.22.x",
"mongo-sanitize": "1.0.x",
"mongodb": "3.1.x",
"passport": "0.4.x",
"passport-http-bearer": "1.0.x",
"path-to-regexp": "2.2.x",
"redis": "3.1.x",
"request": "2.85.x",
"rimraf": "2.6.x",
"semver": "5.5.x",
"uid2": "0.0.x",
"validator": "9.4.x",
"websocket": "1.0.x",
"websocket-events": "1.0.x",
"xev": "^2.0.1"
},
"devDependencies": {
"ajv": "5.x",
"eslint": "4.x",
"eslint-config-standard": "11.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-node": "6.x",
"eslint-plugin-promise": "3.x",
"eslint-plugin-standard": "3.x",
"mocha": "3.x"
},
"files": [
"*"
]
}