-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
42
43
44
45
46
47
{
"name": "flying_piggy",
"version": "0.0.1",
"type": "module",
"scripts": {
"prestart": "run-s assets",
"start": "vite --open",
"assets": "assetpack",
"prebuild": "run-s clean format:check lint assets types",
"build": "vite build",
"types": "tsc",
"prepreview": "run-s build",
"preview": "vite preview --open",
"clean": "rimraf public/assets/* dist/* .assetpack/*",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"@pixi/layout": "^2.0.1",
"@pixi/sound": "^6.0.0",
"@pixi/ui": "^2.0.1",
"gsap": "^3.12.5",
"nanoevents": "^9.0.0",
"pixi.js": "^8.1.1"
},
"devDependencies": {
"@assetpack/cli": "^0.8.0",
"@assetpack/plugin-compress": "^0.8.0",
"@assetpack/plugin-ffmpeg": "^0.8.0",
"@assetpack/plugin-json": "^0.8.0",
"@assetpack/plugin-manifest": "^0.8.0",
"@assetpack/plugin-mipmap": "^0.8.0",
"@assetpack/plugin-texture-packer": "^0.8.0",
"@assetpack/plugin-webfont": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.6",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}