forked from cezarneaga/apollo-cra-authenticated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 975 Bytes
/
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
{
"name": "users",
"version": "1.0.0",
"description": "Starter pack for an auth-included graphql project",
"repository": {
"type": "git",
"url": "github.com/cezarneaga"
},
"main": "index.js",
"scripts": {
"start": "concurrently \"yarn server\" \"yarn client\"",
"server": "nodemon index.js --ignore client",
"client": "babel-node start-client.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.22.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"connect-mongo": "^1.3.2",
"cors": "^2.8.1",
"dotenv-extended": "^1.0.4",
"express": "^4.14.0",
"express-graphql": "^0.6.4",
"express-session": "^1.15.0",
"graphql": "^0.9.1",
"graphql-server-express": "^0.6.0",
"mongoose": "^4.7.8",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"concurrently": "^3.1.0",
"nodemon": "^1.11.0"
}
}