-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
40
41
42
{
"name": "howtogql-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --exit-child src/index.ts",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotansimha/graphql-typescript-node-tutorial.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotansimha/graphql-typescript-node-tutorial/issues"
},
"homepage": "https://github.com/dotansimha/graphql-typescript-node-tutorial#readme",
"devDependencies": {
"@prisma/client": "^3.0.2",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.9.2",
"prisma": "^3.0.2",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"@graphql-tools/schema": "^8.2.0",
"bcryptjs": "^2.4.3",
"fastify": "^3.21.3",
"graphql": "^15.5.3",
"graphql-import-node": "^0.0.4",
"graphql-helix": "^1.8.2",
"graphql-subscriptions": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"typed-graphql-subscriptions": "^0.0.1"
}
}