-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
43
44
45
46
47
48
49
50
51
{
"name": "ipsc-smart-system-backend",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development && ts-node-dev --inspect --transpile-only --no-notify --exit-child src/main.ts",
"prisma:gen": "prisma generate",
"gql:gen": "cross-env NODE_ENV=generate npx ts-node --transpile-only src/schema.ts",
"sdk:gen": "cross-env NODE_ENV=generate genql --schema build/schema.graphql --output build/sdk",
"gen": "npm run prisma:gen && npm run gql:gen && npm run sdk:gen",
"build": "tsc -p tsconfig.json",
"start": "cross-env NODE_ENV=production node build/server/src/main.js"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-yoga/plugin-graphql-sse": "^3.3.0",
"@paljs/generator": "^6.0.7",
"@paljs/nexus": "^6.0.7",
"@paljs/plugins": "^6.0.7",
"@prisma/client": "^5.11.0",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"dotenv": "^16.4.5",
"graphql-scalars": "^1.23.0",
"graphql-yoga": "^5.3.0",
"jimp": "^0.22.12",
"log4js": "^6.9.1",
"moment": "^2.30.1",
"multi-elo": "^2.3.1",
"nexus": "^1.3.0",
"nexus-prisma": "^2.0.5",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@genql/cli": "^6.3.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.5",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"graphql": "^16.8.1",
"prisma": "^5.11.0",
"typescript": "^5.4.3",
"typescript-eslint": "^7.4.0"
}
}