-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "game-tools-collection",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "vite dev --host",
"build": "vite build && node ./scripts/sitemap.js",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tests": "jest --runInBand"
},
"dependencies": {
"@pixi/app": "^7.4.2",
"@pixi/core": "^7.4.2",
"@pixi/display": "^7.4.2",
"@pixi/events": "^7.4.2",
"@pixi/extract": "^7.4.2",
"@pixi/sprite": "^7.4.2",
"@pixi/sprite-tiling": "^7.4.2",
"file-saver": "^2.0.5",
"hex2dec": "^1.1.2",
"lil-gui": "^0.20.0",
"long": "^5.2.3",
"lz-string": "^1.5.0",
"moment": "^2.30.1",
"three": "^0.168.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-node": "^2.0.0",
"@sveltejs/kit": "^2.5.25",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/file-saver": "^2.0.5",
"@types/hex2dec": "^1.1.3",
"@types/jest": "^29.5.12",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/three": "^0.164.0",
"@typescript-eslint/parser": "^8.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"jest-puppeteer": "^10.1.0",
"postcss": "^8.4.41",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"puppeteer": "^23.2.1",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"svelte-eslint-parser": "^0.41.0",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2"
}
}