-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 838 Bytes
/
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
{
"name": "express-leancloud",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d build",
"prestart": "npm run build",
"start": " cross-env NODE_ENV=development node build/server.js "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7"
},
"dependencies": {
"axios": "^0.21.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.19.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"leancloud-storage": "^4.8.0",
"log4js": "^6.3.0",
"redis": "^3.0.2",
"uuid": "^8.3.1"
}
}