forked from hunghg255/svelte-kit-tailwindcss-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "svelte-template",
"version": "0.0.2",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"verify-commit": "verify-commit-msg",
"postinstall": "git-scm-hooks",
"release": "bumpp -r"
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@playwright/test": "^1.38.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.25.0",
"@types/cookie": "^0.5.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.15",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.33.1",
"git-scm-hooks": "^0.0.6",
"postcss": "^8.4.29",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"verify-commit-msg": "^0.0.11",
"vite": "^4.4.9",
"vitest": "^0.32.4"
},
"type": "module",
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
}
}