-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.83 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
{
"name": "sveltekit-local-storage",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "Using Local Storage in SvelteKit: taking the example of setting a site theme, explore how to combine the Local Storage and Svelte Store APIs.",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin=prettier-plugin-svelte . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin=prettier-plugin-svelte .",
"prepare": "husky install",
"prettier:check": "prettier --check --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@commitlint/config-conventional": "^18.0.0",
"@fontsource/source-sans-pro": "^5.0.8",
"@fontsource/source-serif-pro": "^5.0.8",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "1.27.0",
"@types/node": "^20.8.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vanilla-extract/css": "^1.13.0",
"@vanilla-extract/css-utils": "^0.1.3",
"@vanilla-extract/vite-plugin": "3.9.0",
"commitlint": "^18.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.34.0",
"husky": "^8.0.3",
"prettier": "~3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vanilla-lazyload": "^17.8.5",
"vite": "^4.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-local-storage"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-local-storage/issues"
},
"type": "module"
}