-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "kochbuch",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://sanderdrummer.github.io/kochbuch",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"format": "prettier . --write",
"lint": "eslint . --fix",
"deploy": "gh-pages -d dist",
"preview": "vite preview"
},
"dependencies": {
"@solidjs/router": "^0.5.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"dexie": "^3.2.2",
"solid-js": "^1.6.9",
"vite-tsconfig-paths": "^4.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-plugin-solid": "^0.8.0",
"gh-pages": "^4.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-pwa": "^0.13.3",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.25.8"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}