-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 945 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
{
"name": "slynql",
"scripts": {
"start": "node -r dotenv/config src/index.js",
"debug": "nodemon -e js,graphql -x node --inspect -r dotenv/config src/index.js",
"playground": "graphql playground",
"dev": "npm-run-all --parallel start playground"
},
"dependencies": {
"bcryptjs": "2.4.3",
"casual": "^1.5.19",
"dotenv": "^5.0.0",
"graphql-subscriptions": "^0.5.8",
"graphql-yoga": "1.3.3",
"jsonwebtoken": "8.1.1",
"prisma": "1.2.6",
"prisma-binding": "1.5.12",
"subscriptions-transport-ws": "^0.9.7"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"graphql-cli": "2.14.3",
"nodemon": "^1.17.3",
"npm-run-all": "4.1.2"
},
"resolutions": {
"graphql": "0.13.1"
}
}