-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"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"
},
"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.24.5"
},
"devDependencies": {
"file-loader": "6.2.0",
"ts-loader": "8.0.13",
"typescript": "4.1.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.1"
}
}