generated from mrsimonemms/new
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.84 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
{
"name": "chartversion.app",
"version": "0.0.0",
"description": "Find the versions of published Helm charts",
"author": "Simon Emms <simon@simonemms.com>",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"copy:fonts": "cp -rf node_modules/@mdi/font/fonts ./static",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:www\"",
"dev:www": "vite dev",
"dev:api": "json-server dev/db.json --host 0.0.0.0 --routes dev/routes.json",
"format": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-organize-imports --write .",
"lint": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-organize-imports --check . && eslint .",
"prebuild": "npm run copy:fonts",
"predev": "npm run copy:fonts",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest"
},
"devDependencies": {
"@mdi/font": "^7.4.47",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.10",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.0",
"@types/luxon": "^3.4.2",
"bulma": "^1.0.2",
"concurrently": "^9.1.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.39.0",
"globals": "^15.0.0",
"json-server": "^0.17.4",
"luxon": "^3.5.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-svelte": "^3.2.3",
"sass": "^1.81.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-meta-tags": "^4.0.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0",
"vite": "^5.2.11",
"vitest": "^2.0.0"
},
"type": "module"
}