-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 976 Bytes
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
{
"name": "random-image-api",
"version": "1.0.0",
"description": "兰空图床随机图片API管理系统",
"main": "server-secure.js",
"license": "MIT",
"author": "hloolx <hloolmz@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/hloolx/LskyRandImgAPI.git"
},
"keywords": [
"lsky",
"image-api",
"random-image",
"vue",
"nodejs"
],
"scripts": {
"start": "node server-secure.js",
"dev": "nodemon server-secure.js",
"build": "cd vue-simple && npm run build && cd ..",
"production": "NODE_ENV=production node server-secure.js",
"production:win": "set NODE_ENV=production && node server-secure.js"
},
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.0.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}