-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 895 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
{
"name": "basic-web-main",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=development",
"run1": "cd compiler && npm run compile",
"run2": "cd runtime && npm run build",
"run3": "npm run run1 -- ../frontend/about.basic && npm run run2",
"dev": "nodemon --watch frontend/about.basic --exec \"npm run run3\"",
"run4": "npm run run1 -- ../examples/demo.basic && npm run run2",
"dev-demo": "nodemon --watch ./examples/demo.basic --exec \"npm run run4\""
},
"author": "",
"license": "",
"devDependencies": {
"@types/node": "^20.11.7",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-webpack-plugin": "^5.6.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
}
}