-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.48 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
51
52
53
54
55
56
{
"private": true,
"name": "server_node_express",
"description": "",
"scripts": {
"dev": "DEBUG=src/* supervisor node lib/app.js",
"ts:watch": "npm run rm:lib && tsc -w",
"ts:build": "npm run rm:lib && tsc",
"rm:lib": "shx rm -rf lib",
"init": "npm run ts:build && DEBUG=* node lib/init/index.js",
"lint": "eslint src --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apacejs/jwt": "^1.0.0-beta.8",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"express-session": "^1.15.6",
"http-status-codes": "^1.4.0",
"iconv-lite": "^0.4.24",
"jsonwebtoken": "^8.4.0",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"nodemailer": "^4.7.0",
"qcloudsms_js": "^0.1.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"supervisor": "^0.12.0",
"typeorm": "^0.2.24",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/body-parser": "^1.19.0",
"@types/cheerio": "^0.22.16",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.3",
"@types/morgan": "^1.9.0",
"@types/mysql": "^2.15.9",
"@types/nodemailer": "^6.4.0",
"@types/qs": "^6.9.1",
"@types/redis": "^2.8.16",
"@types/uuid": "^7.0.0",
"eslint": "^6.6.0",
"shx": "^0.3.2",
"typescript": "^3.8.3"
}
}