-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 975 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
{
"name": "next-test-me",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prisma": "ts-node ./index.ts",
"ss": "ts-node ./src/index.ts",
"dev": "cross-env ts-node-dev --no-notify --respawn --transpileOnly ./src",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only ./src/schema"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nexus/schema": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"apollo-server-express": "^2.16.0",
"bcrypt": "^5.0.0",
"graphql": "^15.3.0",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.3.2",
"jsonwebtoken": "^8.5.1",
"nexus-plugin-prisma": "^0.16.1",
"slugify": "^1.4.5"
},
"devDependencies": {
"cross-env": "^7.0.2",
"db-migrate-mysql": "^2.1.1",
"ts-node": "8.10.2",
"ts-node-dev": "1.0.0-pre.50",
"typescript": "^3.9.7"
}
}