-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1004 Bytes
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
{
"name": "invaders",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/JustinLloyd/invaders.git"
},
"scripts": {
"start": "parcel serve ./src/html/invaders.html",
"build": "parcel build ./src/html/invaders.html --public-url=./ --no-content-hash --dist-dir final --no-optimize --detailed-report",
"watch": "parcel watch ./src/html/invaders.html",
"prebuild": "rimraf ./final"
},
"file": [
"src/scripts/",
"src/css/",
"src/html/**/*",
"src/assets/**/*",
"build/",
"dist/"
],
"dependencies": {},
"devDependencies": {
"@pixi/canvas-renderer": "^6.1.1",
"@types/gsap": "^3.0.0",
"@types/jquery": "^3.5.6",
"eventemitter3": "^4.0.7",
"gsap": "^3.7.1",
"inline-scripts": "^1.7.4",
"jquery": "^3.6.0",
"parcel": "next",
"pixi-filters": "^4.1.4",
"pixi.js": "^6.0.4",
"rimraf": "^3.0.2",
"sharp": "^0.28.3",
"systemjs": "^6.10.2",
"typescript": "^4.3.5"
}
}