-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
63 lines (63 loc) · 1.63 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": "svelte-starter-kit",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"start": "svelte-kit start",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"format-check": "prettier -- --list-different",
"validate": "npm-run-all --parallel type-check lint build",
"prepare": "husky install"
},
"devDependencies": {
"@supabase/supabase-js": "^1.8.0",
"@sveltejs/adapter-node": "^1.0.0-next.24",
"@sveltejs/adapter-static": "^1.0.0-next.0",
"@sveltejs/kit": "^1.0.0-next.85",
"@tailwindcss/forms": "^0.4.0",
"@types/cookie": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^10.4.2",
"cookie": "^0.4.1",
"cssnano": "^4.1.10",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.1.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"postcss-load-config": "^3.0.1",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"svelte": "^3.29.0",
"svelte-feather-icons": "^3.3.0",
"svelte-preprocess": "^4.6.9",
"svelte-seo": "^1.1.0",
"tailwindcss": "^3.0.18",
"tslib": "^2.0.0",
"typescript": "^4.0.0",
"vite": "^2.1.0"
},
"type": "module",
"engines": {
"node": ">= 12.17.0"
},
"husky": {
"hooks": {
"pre-commit": "CI=1 npm-run-all --parallel type-check && lint-staged"
}
},
"lint-staged": {
"*.+(js|ts|svelte)": [
"yarn run lint"
],
"*.+(js|json|ts|svelte)": [
"yarn run format"
]
}
}