-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "lhd-graphql-server",
"version": "0.1.0",
"description": "GraphQL server for the LHD MySQL database",
"main": "index.ts",
"dependencies": {
"@mercurialweb/nexus-plugin-prisma": "0.49.2",
"@prisma/client": "^4.15",
"@types/chai": "^4.3.6",
"apollo-server": "^3.3.0",
"bignumber.js": "^9.0.0",
"chai": "^4.3.8",
"core-util-is": "^1.0.2",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express-session": "^1.17.3",
"graphql": "^15.5.2",
"inherits": "^2.0.4",
"isarray": "^1.0.0",
"keycloak-connect": "^19.0.2",
"mysql": "^2.18.1",
"nexus": "^1.2.0",
"nexus-prisma": "1.0.6",
"node-fetch": "^2.6.1",
"openid-client": "^5.4.0",
"prisma": "^4.15",
"process-nextick-args": "^2.0.1",
"readable-stream": "^2.3.7",
"safe-buffer": "^5.1.2",
"sqlstring": "^2.3.1",
"string_decoder": "^1.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.65",
"@types/node-fetch": "^2.5.12",
"mocha": "^9.1.1"
},
"scripts": {
"prepublish": "yarn codegen",
"codegen": "yarn prisma:generate && yarn nexus:reflect",
"prisma:generate": "prisma generate",
"nexus:reflect": "env DO_TYPEGEN=1 ts-node --transpile-only nexus/schema",
"clean": "yarn nexus:clean",
"nexus:clean": "rm -rf node_modules/@types/typegen-nexus*",
"start": "sh -c 'node \"$@\" -r ts-node/register index.ts' -- ",
"test": "scripts/run-tests \"$@\""
},
"keywords": [
"LHD",
"GraphQL",
"nexus",
"prisma"
],
"author": "EPFL ISAS-FSD <[email protected]>",
"license": "ISC"
}