-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 967 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
35
36
37
{
"name": "nexusjs-apollo-server-postgre",
"version": "1.0.0",
"main": "index.js",
"license": "OSL-3.0",
"scripts": {
"nexus": "ts-node --transpile-only src/schema.ts",
"server": "ts-node-dev --transpile-only src/index.ts"
},
"dependencies": {
"@prisma/client": "^2.30.2",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-redis-subscriptions": "^2.5.0",
"graphql-scalars": "^1.18.0",
"graphql-subscriptions": "^2.0.0",
"ioredis": "^5.2.3",
"nexus": "^1.3.0",
"pino": "^8.4.2",
"prisma": "^2.30.2",
"subscriptions-transport-ws": "^0.9.19",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@types/pino": "^7.0.4",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0"
},
"resolutions": {
"node-fetch": "^2.6.7"
}
}