forked from nomura-st/node_rest_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 KB
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
{
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"clean": "rimraf dist coverage",
"lint": "eslint src --ext ts,tsx",
"build": "npm run clean && tsc",
"test": "npm run lint && cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"start": "npm run build && npm run test && node dist/server.js",
"start:dev": "npm run build && npm run test && cross-env DEBUG=true node dist/server.js",
"db:init:e2e": "tool\\db_init_e2e.bat",
"db:init:dev": "tool\\db_init_dev.bat"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"jest-mock-extended": "^3.0.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prisma": "^4.10.1",
"prisma-import": "^1.0.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^6.15.0",
"log4js": "^6.7.1",
"node-windows": "^1.0.0-beta.8"
}
}