forked from sequelize/express-example
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 974 Bytes
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
{
"name": "express-example",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "babel-node ./bin/www --presets es2015 stage-2",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha test/unit/*.test.js",
"test-integration": "mocha test/integration/*.test.js"
},
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"express-graphql": "^0.4.5",
"graphql": "^0.4.14",
"graphql-sequelize": "^0.16.2",
"jade": "~1.11.0",
"morgan": "~1.6.1",
"sequelize": "^3.3.2",
"sequelize-cli": "^1.7.1",
"serve-favicon": "~2.3.0",
"sqlite3": "^3.0.8",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"bluebird": "^2.9.33",
"expect.js": "^0.3.1",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
}
}