-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
38
39
40
{
"name": "express-template",
"version": "0.0.1",
"description": "express開發模板",
"main": "app.ts",
"scripts": {
"dev": "cross-env NODE_ENV=dev nodemon ./src/app.ts",
"dev:prod": "cross-env NODE_ENV=prod nodemon ./src/app.ts",
"pm2:dev": "cross-env NODE_ENV=dev pm2 start ./ecosystem.config.js",
"pm2:prod": "cross-env NODE_ENV=prod pm2 start ./ecosystem.config.js",
"lint": "eslint .",
"migrate": "nodemon ./src/migrations/index.ts"
},
"author": "Ryan",
"license": "MIT",
"dependencies": {
"@typescript-eslint/parser": "^5.51.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"migrate-mongo": "^9.0.0",
"mongoose": "^6.9.1",
"multer": "^1.4.5-lts.1",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"eslint": "^8.33.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}