-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
{
"name": "express-demo",
"version": "1.0.0",
"description": "",
"main": "sls.js",
"scripts": {
"pro": "set NODE_ENV=production && nodemon src/app.ts",
"dev": "set NODE_ENV=development && nodemon src/app.ts",
"build": "tsc && node build/app.js",
"deploy": "tsc && yarn install --production && serverless deploy && yarn install",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cos-nodejs-sdk-v5": "^2.11.9",
"express": "^4.18.1",
"express-jwt": "^7.7.2",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql": "^2.18.1",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.5",
"qcloud-cos-sts": "^3.1.0",
"reflect-metadata": "^0.1.13",
"store": "^2.0.12",
"typeorm": "0.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.15",
"prettier": "2.5.0",
"ts-node": "10.7.0",
"typescript": "4.5.2"
}
}