-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 969 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
{
"name": "graph",
"version": "1.0.0",
"description": "Apollo GraphQL Server implemented in Typescript",
"main": "index.js",
"repository": "https://github.com/rprakashg/msaday22",
"author": "Ram Gopinathan",
"license": "MIT",
"private": true,
"dependencies": {
"@prisma/client": "^4.3.1",
"apollo-datasource-rest": "^3.6.1",
"apollo-server": "^3.9.0",
"graphql": "^16.5.0",
"graphql-scalars": "^1.15.0",
"jsonwebtoken": "^8.5.1",
"nexus": "^1.3.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"prettier": "^2.6.0",
"prisma": "^4.3.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"scripts": {
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --transpile-only --no-notify --exit-child src/index.ts",
"generate": "ts-node --transpile-only src/schema.ts & npx prisma generate",
"prod": "node dist/index.js"
}
}