-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "spectrum",
"private": true,
"version": "0.0.0",
"author": "Simon Reinisch <trash@reinisch.io>",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint **/*.{ts,tsx} --cache",
"lint:fix": "npm run lint -- --fix",
"test:ci": "npm run lint:fix && npm run build"
},
"dependencies": {
"preact": "^10.11.3",
"pretty-bytes": "^6.0.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-optimize-css-modules": "^1.0.4",
"vite-plugin-pwa": "^0.14.0",
"vite-tsconfig-paths": "^4.0.3"
}
}