forked from 0o-de-lally/status
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1023 Bytes
/
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
{
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"deploy": "gh-pages -d build -t true",
"lint": "svelte-check --tsconfig ./jsconfig.json && eslint src && prettier --check src",
"format": "eslint --fix src/**/*.ts && prettier --write src/*"
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.30.4",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.43.0",
"gh-pages": "^5.0.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"vite": "^4.5.3"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"dependencies": {
"axios": "^1.7.7",
"moment": "^2.30.1",
"uikit": "^3.21.10",
"uikit-icons": "^0.5.0"
}
}