-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 926 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 926 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
{
"name": "ez-theme-api-middleware",
"version": "1.0.0",
"description": "EZ THEME API中间件服务",
"main": "server.js",
"bin": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build:linux-x64": "pkg . --target node18-linux-x64 --output dist/EZ_API_Linux_x64",
"build:linux-arm64": "pkg . --target node18-linux-arm64 --output dist/EZ_API_Linux_arm",
"build:all-linux": "npm run build:linux-x64 && npm run build:linux-arm64"
},
"pkg": {
"assets": [
"**/*",
"!node_modules/**/*",
"!dist/**/*",
"!.git/**/*"
],
"outputPath": "dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"lru-cache": "^11.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"pkg": "^5.8.1"
}
}