-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 781 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 781 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
{
"name": "sample-platformer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev": "webpack-dev-server --mode development --open",
"start": "webpack-dev-server --mode development --open",
"test": "npm run build:prod && ex-test -d ./dist -t ./test/integration/ex-tests.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"excalibur": "0.32.0"
},
"devDependencies": {
"@excaliburjs/testing": "0.26.0",
"copy-webpack-plugin": "11.0.0",
"puppeteer": "^24.34.0",
"ts-loader": "9.5.7",
"typescript": "5.9.3",
"webpack": "5.106.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.3"
}
}