-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "node-app",
"version": "0.1.0",
"description": "Node.js TypeScript boilerplate",
"private": "true",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc --build --clean && tsc",
"start": "pm2 start dist/index.js --name app",
"monitor": "pm2 monit",
"stop": "pm2 stop app",
"logs": "pm2 logs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.3.57",
"@swc/helpers": "^0.5.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"pm2": "^5.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}