-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vite-template-solid",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "prettier --check . --ignore-path .gitignore && eslint .",
"format": "prettier --ignore-path .gitignore --write .",
"format-check": "prettier -- --list-different",
"validate": "npm-run-all --parallel type-check lint build"
},
"license": "MIT",
"devDependencies": {
"@iconify-json/heroicons-solid": "^1.0.1",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"autoprefixer": "^10.2.6",
"babel-preset-solid": "^1.0.0",
"daisyui": "^1.14.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"solid-meta": "^0.27.0",
"solid-transition-group": "^0.0.8",
"tailwindcss": "^2.2.4",
"typescript": "^4.3.5",
"unplugin-auto-import": "^0.4.12",
"unplugin-icons": "^0.12.15",
"vite": "^2.3.8",
"vite-plugin-solid": "^2.0.0"
},
"dependencies": {
"@fontsource/work-sans": "^4.5.1",
"@supabase/supabase-js": "^1.24.0",
"solid-app-router": "^0.0.50",
"solid-js": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "CI=1 npm-run-all --parallel type-check && lint-staged"
}
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"yarn run lint"
],
"*.+(js|json|ts|tsx)": [
"yarn run format"
]
}
}