-
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) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 824 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": "game-phaser",
"version": "1.0.0",
"description": "poc",
"main": "index.js",
"repository": "private",
"scripts": {
"dev": "webpack serve --open --config webpack/webpack.dev.js",
"build:dev": "webpack --config webpack/webpack.dist.js --env build=dev",
"build": "webpack --config webpack/webpack.dist.js --env build=prod",
"dist": "npx http-server -o dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"phaser": "3.55.2"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
}
}