-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "leancloud-node-ts",
"version": "1.0.0",
"private": true,
"description": "LeanCloud Node Typescript 实例项目。开发环境已经配置好了,直接安装就能用",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "npm run watch",
"clean": "rm -rf node_modules && npm cache clean --force",
"build": "gulp copy && gulp ts",
"prepublish": "npm run build",
"watch": "concurrently -k -p \"[{name}]\" -n \"TS\" -c \"cyan.bold\" \"npm run ts\"",
"ts": "tsc-watch --onSuccess \"node dist/server.js\""
},
"dependencies": {
"@types/express": "^4.17.0",
"@types/node": "^12.12.42",
"@types/node-notifier": "^5.4.0",
"body-parser": "^1.19.0",
"body-parser-xml": "^1.1.0",
"connect-timeout": "^1.7.0",
"cookie-parser": "^1.3.5",
"cors": "^2.8.3",
"express": "^4.17.1",
"gulp": "^4.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.1",
"helmet": "^3.18.0",
"leancloud-storage": "^3.13.2",
"leanengine": "^3.4.0",
"node-notifier": "^5.4.0",
"request-ip": "^2.1.3",
"source-map-support": "^0.5.12",
"typescript": "^3.5.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"concurrently": "^4.1.0",
"tsc-watch": "^2.2.0"
},
"engines": {
"node": ">=12.17.0",
"npm": ">=6.0"
}
}