-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "townbox",
"version": "0.1.0",
"description": "City builder in javascript using Phaser 3 engine",
"author": "Mauricio Fernandes",
"license": "MIT",
"scripts": {
"copy-images": "cross-env cpy ./src/img/sprites/**/*.* ./dist/sprites/ --watch",
"build-dev": "cross-env parcel watch ./src/html/index.html --dist-dir ./dist",
"build-prod": "cross-env parcel build ./src/html/index.html --dist-dir ./bin",
"serve-dev": "cross-env browser-sync start --server ./dist --files ./dist",
"dev": "concurrently 'npm:copy-images' 'npm:build-dev' 'npm:serve-dev'",
"package": "concurrently 'npm:copy-images' 'npm:build-prod'"
,"test": "jest"
},
"keywords": [
"game",
"phaser3",
"html5",
"city builder",
"top down",
"canvas",
"simulation",
"sim city",
"2D"
],
"dependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@faker-js/faker": "^8.4.1",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"app": "^0.1.0",
"d3": "^7.9.0",
"phaser": "^3.80.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-rnd": "^10.4.11",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"@types/uuid": "^10.0.0",
"browser-sync": "^3.0.2",
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"jest": "^30.0.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"ts-jest": "^29.4.0",
"typescript": "^5.4.5"
}
}