-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.86 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.86 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "svelte-kit-scss",
"description": "Create SvelteKit app with SCSS",
"keywords": [
"svelte-kit",
"sass"
],
"private": true,
"hasShowcase": false,
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "vite dev --open",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test:e2e": "playwright test",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "cd .. && husky install svelte-kit-scss/.husky"
},
"devDependencies": {
"@fontsource/fira-mono": "4.5.10",
"@neoconfetti/svelte": "1.0.0",
"@playwright/test": "1.30.0",
"@storybook/addon-essentials": "7.0.26",
"@storybook/addon-interactions": "7.0.26",
"@storybook/addon-links": "7.0.26",
"@storybook/blocks": "7.0.26",
"@storybook/preset-scss": "1.0.3",
"@storybook/svelte": "7.0.26",
"@storybook/sveltekit": "7.0.26",
"@storybook/testing-library": "0.2.0",
"@sveltejs/adapter-auto": "2.0.0",
"@sveltejs/adapter-netlify": "2.0.8",
"@sveltejs/kit": "1.20.4",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/svelte": "4.0.3",
"@types/cookie": "0.5.1",
"@types/markdown-it": "12.2.3",
"@types/prismjs": "1.26.0",
"@types/sanitize-html": "2.6.2",
"@types/testing-library__jest-dom": "5.14.7",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"@vitest/coverage-c8": "0.28.5",
"buffer": "6.0.3",
"css-loader": "6.7.3",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-storybook": "0.6.12",
"eslint-plugin-svelte": "2.30.0",
"eslint": "8.34.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.2",
"jsdom": "20.0.3",
"lint-staged": "13.1.0",
"prettier-plugin-svelte": "2.10.1",
"prettier": "2.8.4",
"react-dom": "18.2.0",
"react": "18.2.0",
"sass-loader": "13.2.0",
"sass": "1.58.0",
"storybook": "7.0.26",
"style-loader": "3.3.1",
"svelte-check": "3.4.3",
"svelte-octicons": "^17.11.0",
"svelte": "4.0.5",
"tslib": "2.5.0",
"typescript": "5.0.2",
"vite": "4.4.3",
"vitest": "0.32.2"
},
"lint-staged": {
"src/**/*{.js,.ts,.html,.css,.svelte}": [
"prettier --plugin-search-dir . --write ."
],
"src/**/*{.js,.ts,.svelte}": "eslint ."
},
"dependencies": {
"cookie": "0.5.0",
"markdown-it": "13.0.1",
"prismjs": "1.29.0",
"sanitize-html": "2.7.3"
}
}