-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "wisdowm-journey-server",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "[email protected]:ephiscience/wisdowm-journey-server.git",
"private": true,
"dependencies": {
"@prisma/client": "^2.23.0",
"apollo-server-express": "^2.25.2",
"csv-parser": "^3.0.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"morgan": "^1.10.0",
"nexus": "^1.0.0"
},
"scripts": {
"load_questions": "node --unhandled-rejections=strict -r ts-node/register ./src/scripts/load_questions.ts",
"load_criterions": "node --unhandled-rejections=strict -r ts-node/register ./src/scripts/load_criterions.ts",
"dev": "ts-node-dev --transpile-only --no-notify src/index.ts",
"build": "tsc",
"lint": "eslint ."
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14",
"@typescript-eslint/eslint-plugin": "^4.24",
"@typescript-eslint/parser": "^4.24",
"eslint": "^7.26",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4",
"prettier": "^2.3",
"prisma": "^2.23",
"ts-node-dev": "^1.1",
"typescript": "^4.3"
}
}