-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 866 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
{
"name": "up-graphql-yoga-server-example",
"scripts": {
"local-start": "dotenv -- nodemon -e ts,graphql -x ts-node src/index.ts",
"dev": "npm-run-all --parallel local-start playground",
"debug": "dotenv -- nodemon -e ts,graphql -x ts-node --inspect src/index.ts",
"playground": "graphql playground --port 5000",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"local-start-js": "dotenv -- node dist/index.js"
},
"dependencies": {
"bcryptjs": "2.4.3",
"graphql-yoga": "1.2.4",
"jsonwebtoken": "8.1.1",
"prisma-binding": "1.5.7"
},
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"dotenv-cli": "1.4.0",
"graphql-cli": "2.13.1",
"nodemon": "1.14.12",
"npm-run-all": "4.1.2",
"prisma": "1.1.3",
"rimraf": "2.6.2",
"ts-node": "4.1.0",
"typescript": "2.7.1"
}
}