-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "express-app",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "nodemon -q -w src src/main.ts",
"docker:dev": "docker-compose up --build",
"build": "rimraf dist && swc src -d dist",
"start": "pm2-runtime start ecosystem.config.js --env production",
"start:dev": "pm2 start ecosystem.config.js",
"kill": "pm2 kill",
"test": "jest",
"monit": "pm2 monit"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"pm2": "^5.2.2"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.21",
"@swc/helpers": "^0.4.14",
"@swc/jest": "^0.2.23",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"regenerator-runtime": "^0.13.11",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.3"
}
}