-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "phichess",
"version": "0.1.0",
"description": "Play over the board chess on any device",
"author": "Philipp Miller",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint src --max-warnings 0",
"format": "eslint src --fix",
"pre-commit": "yarn lint && yarn typecheck"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@stylistic/eslint-plugin": "^2.6.4",
"@sveltejs/vite-plugin-svelte": "3.1.1",
"@tsconfig/svelte": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^2.43.0",
"sass": "^1.77.8",
"svelte": "^4.2.18",
"svelte-check": "^3.8.5",
"svelte-preprocess": "^6.0.2",
"ts-pattern": "^5.3.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-pwa": "^0.20.1",
"vitest": "^2.0.5"
}
}