-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "graphql-backend",
"scripts": {
"start": "dotenv -- nodemon -e ts,graphql -x ts-node src/index.ts",
"dev": "dotenv -- nodemon -e ts,graphql -x ts-node src/index.ts",
"generate": "yarn -s gg",
"debug": "dotenv -- nodemon -e ts,graphql -x ts-node --inspect src/index.ts",
"build": "rimraf dist && tsc"
},
"dependencies": {
"@types/nodemailer": "^6.2.0",
"algoliasearch": "^3.33.0",
"bcryptjs": "2.4.3",
"cookie-parser": "^1.4.4",
"graphql-shield": "^5.3.6",
"graphql-yoga": "1.17.4",
"jsonwebtoken": "8.5.1",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"prisma-client-lib": "^1.34.0",
"slugify": "^1.3.4"
},
"devDependencies": {
"@types/algoliasearch": "^3.30.12",
"@types/bcryptjs": "2.4.2",
"@types/cookie-parser": "^1.4.1",
"@types/node": "10.14.7",
"@types/passport": "^1.0.0",
"@types/passport-github": "^1.1.5",
"dotenv-cli": "1.4.0",
"graphqlgen": "^0.6.0-rc9",
"nodemon": "1.19.1",
"prisma": "1.34.0",
"rimraf": "2.6.3",
"ts-node": "7.0.1",
"typescript": "3.2.2"
}
}