forked from code-game-project/game-frontend-template-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 1.1 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
{
"name": "game-frontend-template-svelte",
"version": "0.0.1",
"description": "A template for building websites for CodeGame game servers using TypeScript and SvelteKit.",
"license": "MIT",
"author": {
"name": "Maxwell Matthis"
},
"homepage": "https://github.com/code-game-project/game-frontend-template-svelte#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/code-game-project/game-frontend-template-svelte.git"
},
"bugs": {
"url": "https://github.com/code-game-project/game-frontend-template-svelte/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@tsconfig/svelte": "^3.0.0",
"@types/prismjs": "^1.26.0",
"svelte": "^3.54.0",
"svelte-check": "^2.10.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"type": "module",
"dependencies": {
"@code-game-project/client": "^0.1.4",
"pixi.js": "^6.5.1",
"prismjs": "^1.28.0",
"sass": "^1.57.0",
"svelte-routing": "^1.6.0"
}
}