-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "oljayto-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prisma": "npx prisma generate",
"generate": "ts-node --transpile-only src/schema.ts",
"dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register --respawn src/index.ts",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"prisma": "^4.10.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"@types/graphql-fields": "^1.3.4",
"class-validator": "^0.14.0",
"cross-env": "^7.0.3",
"graphql": "^15.8.0",
"graphql-fields": "^2.0.3",
"graphql-yoga": "^3.6.0",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0",
"type-graphql": "^1.1.1",
"typegraphql-prisma": "^0.23.5",
"typescript": "^4.9.5"
}
}