-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1002 Bytes
/
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
{
"name": "graph-tower-defense",
"version": "0.0.1",
"description": "AWDE 2020 Gamejam",
"main": "index.js",
"watch": {
"dev": {
"patterns": [
"src"
],
"extensions": "ts,scss",
"quiet": false
}
},
"scripts": {
"watch": "npm-watch dev",
"build": "webpack --mode production",
"dev": "./updateassets.sh && webpack --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AwdeTeam/graph-tower-defense.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AwdeTeam/graph-tower-defense/issues"
},
"homepage": "https://github.com/AwdeTeam/graph-tower-defense#readme",
"devDependencies": {
"@types/jquery": "^3.5.5",
"sass": "^1.30.0",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"excalibur": "^0.24.5",
"jquery": "^3.5.1",
"npm-watch": "^0.7.0"
}
}