-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 915 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 915 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
{
"name": "@8thwall/studio-build",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js --config config/webpack.config.js",
"serve": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode=development --config config/webpack.config.js"
},
"devDependencies": {
"@babel/parser": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/runtime": "^7.28.4",
"@types/node": "^16.18.36",
"babel-loader": "^9.1.3",
"chokidar": "^5.0.0",
"copy-webpack-plugin": "^13.0.1",
"html-webpack-plugin": "^5.6.5",
"ts-essentials": "^9.3.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-virtual-modules": "^0.6.2"
},
"dependencies": {
"@8thwall/ecs": "^3.2.0"
}
}