forked from eonarheim/Excalibur-Shmup
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"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",
"start": "webpack-dev-server --mode development --open",
"test": "npm run build:prod && ex-test -d ./dist -t ./test/test.js"
},
"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": {
"excalibur": "0.32.0"
},
"devDependencies": {
"@excaliburjs/testing": "0.26.0",
"copy-webpack-plugin": "10.2.4",
"ts-loader": "9.5.7",
"typescript": "4.9.5",
"webpack": "5.106.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.2"
}
}