forked from arkutils/arkutils-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "arkutils-website",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17",
"@square/svelte-store": "^0",
"@sveltejs/adapter-auto": "^1",
"@sveltejs/kit": "^1",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"autoprefixer": "^10",
"daisyui": "^2",
"eslint": "^7",
"eslint-config-prettier": "^8",
"eslint-plugin-square-svelte-store": "^1",
"eslint-plugin-svelte3": "^3",
"husky": "^7",
"postcss": "^8",
"postcss-load-config": "^4",
"prettier": "^2",
"prettier-plugin-svelte": "^2",
"svelte": "^3",
"svelte-check": "^2",
"svelte-preprocess": "^4",
"tailwindcss": "^3",
"tslib": "^2",
"typescript": "^4",
"vite": "^4.4.12"
},
"type": "module",
"engines": {
"node": ">=16.9.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-leading-blank": [
2,
"always"
],
"body-max-line-length": [
0,
"never",
10000
]
}
}
}