-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.05 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.05 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "api-design",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset",
"dev": "nodemon --ext ts src/server.ts",
"lint": "eslint --fix \"src/**/*.ts\"",
"format": "prettier --write --cache --cache-strategy metadata \"src/**/*.ts\"",
"format:lint": "pnpm format && pnpm lint",
"test": "cross-env NODE_ENV=development jest --silent --runInBand src",
"test:coverage": "jest --coverage --silent --runInBand src",
"test:verbose": "cross-env NODE_ENV=development jest --verbose --runInBand src",
"test:watch": "jest --watch --silent --runInBand src",
"build": "tsc -p tsconfig.json",
"start": "pnpm build && pm2 start dist/server.js --name api_design",
"prisma": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash.merge": "^4.6.7",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "npm:eslint-plugin-i@2.27.5-4",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest-mock-extended": "^3.0.5",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"@types/jest": "^29.5.3",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jest": "^29.6.2",
"jsonwebtoken": "^9.0.1",
"lodash.merge": "^4.6.2",
"morgan": "^1.10.0",
"pm2": "^5.3.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}