-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@excaliburjs/sample-shootemup",
"private": true,
"version": "0.1.0",
"description": "Sample Excalibur.js shoot 'em up game",
"homepage": "https://github.com/excaliburjs/sample-shootemup",
"scripts": {
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev": "webpack-dev-server --mode development --open",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"start": "webpack-dev-server --mode development --open",
"test": "echo \"no test\""
},
"author": {
"name": "excaliburjs",
"url": "https://excaliburjs.com/",
"git": "https://github.com/excaliburjs/Excalibur"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/excaliburjs/Excalibur/blob/main/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/excaliburjs/sample-shootemup.git"
},
"bugs": {
"url": "https://github.com/excaliburjs/sample-shootemup/issues"
},
"dependencies": {
"ace-builds": "^1.36.2",
"excalibur": "0.28.1"
},
"devDependencies": {
"@excaliburjs/testing": "0.25.1",
"copy-webpack-plugin": "10.2.0",
"css-loader": "^7.1.2",
"dprint": "^0.47.2",
"style-loader": "^4.0.0",
"ts-loader": "9.2.6",
"typescript": "4.5.4",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
}
}