forked from CVEProject/cve-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.95 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
62
63
{
"name": "cve-services",
"author": "Automation Working Group",
"version": "0.0.3",
"license": "(CC0)",
"devDependencies": {
"apidoc": "^0.17.7",
"chai": "^4.2.0",
"chai-arrays": "^2.0.0",
"chai-http": "^4.3.0",
"chai-like": "^1.1.1",
"chai-string": "^1.5.0",
"chai-things": "^0.2.0",
"chai-uuid": "^1.0.6",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^1.3.1",
"kleur": "^4.1.1",
"mocha": "^6.2.3",
"node-dev": "^4.0.0",
"pm2": "^3.5.0",
"standard": "^14.3.3",
"uuid": "^8.3.0"
},
"dependencies": {
"axios": "^0.19.2",
"config": "^3.1.0",
"cors": "^2.8.5",
"depcheck": "^0.9.2",
"dotenv": "^5.0.1",
"express": "^4.15.4",
"express-jsonschema": "^1.1.6",
"express-validator": "^6.4.0",
"helmet": "^3.21.2",
"jsonschema": "^1.2.6",
"mongoose": "^5.5.14",
"morgan": "^1.9.1",
"prompt-sync": "^4.2.0",
"uuid-apikey": "^1.4.6",
"winston": "^3.2.1"
},
"apidoc": {
"name": "CVE-Services",
"version": "0.0.0",
"description": "Some Future Description",
"title": "CVE API Services"
},
"scripts": {
"docs": "./node_modules/apidoc/bin/apidoc -i src/ -o apidoc/",
"lint": "node node_modules/eslint/bin/eslint.js src/ --fix",
"clean": "node node_modules/depcheck/bin/depcheck.js",
"start:test": "NODE_ENV=test mocha --recursive --exit || true",
"start:dev": "NODE_ENV=development node-dev src/index.js",
"start:int": "NODE_ENV=integration node-dev src/index.js",
"start:prod": "NODE_ENV=production pm2 start ./config/pm2.config.json --env production",
"populate:dev": "NODE_ENV=development POPULATE=true node-dev src/index-populate.js",
"populate:int": "NODE_ENV=integration POPULATE=true node-dev src/index-populate.js"
}
}