-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
82 lines (82 loc) · 3.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "inpx-web",
"version": "1.5.8",
"author": "Book Pauk <bookpauk@gmail.com>",
"license": "CC0-1.0",
"repository": "bookpauk/inpx-web",
"engines": {
"node": ">=16.16.0"
},
"scripts": {
"dev": "nodemon --inspect --ignore server/.inpx-web --ignore client --exec 'node --expose-gc server --lib-dir=server/.inpx-web/lib'",
"build:client": "webpack --config build/webpack.prod.config.js",
"build:linux": "npm run build:client && node build/prepkg.js linux && pkg -t node16-linux-x64 -C GZip --options max-old-space-size=4096,expose-gc -o dist/linux/inpx-web .",
"build:linux-arm64": "npm run build:client && node build/prepkg.js linux-arm64 && pkg -t node16-linuxstatic-arm64 -C GZip --options max-old-space-size=4096,expose-gc -o dist/linux-arm64/inpx-web .",
"build:win": "npm run build:client && node build/prepkg.js win && pkg -t node16-win-x64 -C GZip --options max-old-space-size=4096,expose-gc -o dist/win/inpx-web .",
"build:macos": "npm run build:client && node build/prepkg.js macos && pkg -t node16-macos-x64 -C GZip --options max-old-space-size=4096,expose-gc -o dist/macos/inpx-web .",
"build:client-dev": "webpack --config build/webpack.dev.config.js",
"build:all": "npm run build:linux && npm run build:win && npm run build:macos && npm run build:linux-arm64",
"release": "npm run build:all && node build/release.js",
"release:linux": "npm run build:linux && node build/release.js linux",
"release:win": "npm run build:win && node build/release.js win",
"release:macos": "npm run build:macos && node build/release.js macos",
"release:arm64": "npm run build:linux-arm64 && node build/release.js arm64",
"postinstall": "npm run build:client-dev"
},
"bin": "server/index.js",
"pkg": {
"scripts": "server/config/*.js",
"assets": "dist/public.json"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/eslint-plugin": "^7.23.5",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@vue/compiler-sfc": "^3.2.22",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"pkg": "^5.8.1",
"showdown": "^2.1.0",
"terser-webpack-plugin": "^5.3.10",
"vue-eslint-parser": "^9.4.2",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.2",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@quasar/extras": "^1.16.9",
"axios": "^0.27.2",
"chardet": "^1.6.0",
"dayjs": "^1.11.10",
"express": "^4.19.1",
"express-basic-auth": "^1.2.1",
"fs-extra": "^10.1.0",
"he": "^1.2.0",
"iconv-lite": "^0.6.3",
"jembadb": "^5.1.7",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"node-stream-zip": "^1.15.0",
"quasar": "^2.15.1",
"safe-buffer": "^5.2.1",
"vue": "^3.2.37",
"vue-router": "^4.3.0",
"vuex": "^4.1.0",
"vuex-persist": "^3.1.3",
"ws": "^8.16.0",
"yazl": "^2.5.1"
}
}