-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 926 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
{
"name": "prisma-authorized-starter",
"description": "Prisma. Intended to be used with AWS-SLS-Auth-Starter",
"scripts": {
"test": "ava-ts",
"start": "dotenv -- nodemon -e ts,graphql -x ts-node src/index.ts",
"dev": "npm-run-all --parallel start playground",
"debug": "dotenv -- nodemon -e ts,graphql -x ts-node --inspect src/index.ts",
"playground": "graphql playground",
"build": "rimraf dist && tsc"
},
"dependencies": {
"aws-sls-auther": "^1.2.3",
"bcryptjs": "2.4.3",
"graphql-yoga": "1.16.9",
"jsonwebtoken": "8.2.1",
"prisma-binding": "1.5.19"
},
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"ava": "^0.25.0",
"ava-ts": "^0.24.6",
"dotenv-cli": "^1.4.0",
"graphql-cli": "2.16.1",
"nodemon": "1.17.5",
"npm-run-all": "4.1.3",
"prisma": "1.9.0",
"rimraf": "2.6.2",
"ts-node": "^6.1.1",
"typescript": "2.9.1"
}
}