-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "online-music-app",
"version": "0.0.0",
"private": true,
"scripts": {
"init": "npm i && cd client && npm i",
"seed": "node models/data_seeder/runSeed",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.15.5",
"express-graphql": "^0.6.11",
"graphql": "^0.12.3",
"graphql-tools": "^2.18.0",
"helmet": "^3.9.0",
"jade": "~1.11.0",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"mongoose": "^5.0.0-rc2",
"mongoose-bcrypt": "^1.5.0",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"seraph": "^0.15.3",
"seraph-model": "^0.10.1",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-polyfill": "^6.26.0",
"chance": "^1.0.13",
"concurrently": "^3.5.1",
"locus": "1.2.0",
"nodemon": "^1.14.7"
}
}