-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "plan-b",
"private": true,
"version": "0.0.1",
"author": "Whelam",
"description": "display software to showcase a multimedia collection including booklists, songs, and comics.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prettier:src": "prettier --write \"src/**/*.{ts,js,svelte}\"",
"eslint": "eslint \"src/**/*.{ts,js,svelte}\" \"src/main.ts\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@tsconfig/svelte": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"autoprefixer": "^10.4.16",
"axios": "1.5.1",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"sass": "1.69.0",
"svelte": "^4.2.1",
"svelte-check": "^3.5.2",
"svelte-eslint-parser": "0.33.1",
"svelte-icons-pack": "2.1.0",
"svelte-spa-router": "3.3.0",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"lint-staged": {
"*.{ts,js,jsx,svelte}": [
"eslint",
"prettier --write"
]
}
}