-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "TheReportOfTheWeek-API",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run seed && npm run single",
"single": "babel-node ./src/index.js",
"clusters": "babel-node ./src/clusters.js",
"seed": "babel-node seeds/seed.js",
"test": "NODE_ENV=test mocha test/**/*.js",
"lint": "eslint src test seeds"
},
"author": "Andy Klimczak",
"dependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.15.0",
"cluster": "^0.7.7",
"compression": "^1.6.2",
"consign": "^0.1.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"helmet": "^2.1.1",
"mongo-querystring": "^4.1.0",
"mongoose": "^4.4.10",
"mongoose-seeder": "^1.2.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.0.2",
"supertest": "^2.0.0"
}
}