-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.04 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
{
"devDependencies": {
"adm-zip": "^0.5.16",
"chalk": "^5.4.1",
"child_process": "^1.0.2",
"chokidar": "^4.0.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"joi": "^17.13.3",
"vite": "^6.0.7",
"webpack-cli": "^6.0.1",
"yocto-spinner": "^0.1.2",
"open": "^10.1.0"
},
"type": "module",
"scripts": {
"webpackBuildStep": "npx webpack build --config ./webpack_buildstep.config.cjs --stats verbose",
"webpackExport": "npx webpack build --config ./webpack_export.config.cjs --stats verbose",
"validateAceConfigs": "cd build && node validateAceConfigs.js",
"generateAceFiles": "cd build && node generateAceFiles.js",
"generateLang": "cd build && node generateLangJSON.js",
"build": "cd build && node build.js",
"dev": "cd build && node dev.js",
"updateProjectData": "cd build && node updateProjectData.js",
"init": "npm install && node build/init.js",
"generateDocs": "cd build && node generateDocumentation.js",
"publish": "cd build && node publish.js"
},
"dependencies": {}
}