This repository has been archived by the owner on Oct 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "guitar-log-app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"client": "BROWSER=\"Google Chrome\" node start-client.js",
"server": "DEBUG=guitar-log-app:server,express:router nodemon ./app --exec babel-node -e js,yaml",
"test": "mocha --compilers js:babel-core/register --timeout 10000"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.0",
"body-parser": "~1.17.1",
"chalk": "^2.1.0",
"cookie-parser": "~1.4.3",
"crypto": "0.0.3",
"debug": "~2.6.3",
"dotenv": "^4.0.0",
"express": "~4.15.2",
"express-graphql": "^0.6.7",
"express-ping": "^1.4.0",
"express-validator": "^3.2.1",
"express-winston": "^2.4.0",
"jade": "~1.11.0",
"joi": "^10.6.0",
"js-yaml": "^3.9.1",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"material-ui": "^1.0.0-beta.6",
"moment": "^2.18.1",
"mongoose": "^4.11.1",
"mongoose-acl": "^0.2.3",
"morgan": "~1.8.1",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"passport-swagger-auth": "^1.0.1",
"prismic-javascript": "^1.1.6",
"redux-thunk": "^2.2.0",
"serve-favicon": "~2.4.2",
"util": "^0.10.3",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.1",
"chai-http": "^3.0.0",
"concurrently": "^3.5.0",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"sinon": "^3.2.0",
"sinon-mongoose": "^2.0.2"
}
}