-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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": "walljoy-server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/kysley/walljoy-server",
"author": "Evan Kysley <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --transpile-only --no-notify src/index.ts",
"dev:typecheck": "tsc --noEmit --watch",
"build": "yarn nexus:reflection:temp && tsc",
"build:reflect": "cross-env NODE_ENV=production NEXUS_SHOULD_EXIT_AFTER_REFLECTION=true ts-node --transpile-only ./src/schema",
"seed": "ts-node --transpile-only src/seed.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/uuid": "^8.3.0",
"cross-env": "^7.0.3",
"prisma": "^2.25.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"@prisma/client": "^2.23.0",
"bcryptjs": "^2.4.3",
"bull": "^3.22.8",
"connection-string": "^4.3.4",
"fastify": "^3.15.1",
"fastify-cors": "^6.0.1",
"fastify-plugin": "^3.0.0",
"got": "^11.8.2",
"graphql": "^15.5.0",
"graphql-scalars": "^1.9.3",
"ioredis": "^4.27.3",
"jsonwebtoken": "^8.5.1",
"mercurius": "^7.6.1",
"nexus": "^1.0.0",
"nexus-plugin-prisma": "^0.35.0",
"uuid": "^8.3.2"
}
}