-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.13 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
63
64
65
66
67
{
"name": "epiroom",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"prepare": "svelte-kit sync",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:css": "stylelint \"src/**/*.{css,svelte}\"",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-svelte-csf": "^1.1.2",
"@storybook/svelte": "^6.4.22",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@types/lodash-es": "^4.17.6",
"@types/luxon": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-loader": "^8.2.5",
"cssnano": "^5.1.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.5.11",
"eslint-plugin-svelte3": "^3.4.1",
"nightwind": "^1.1.12",
"postcss": "^8.4.13",
"postcss-hexrgba": "^2.0.1",
"postcss-html": "^1.4.1",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.4.4",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.10",
"storybook-addon-paddings": "^4.3.0",
"storybook-dark-mode": "^1.1.0",
"storybook-fixtures": "^0.11.0",
"stylelint": "^14.8.1",
"stylelint-config-recommended": "^7.0.0",
"svelte": "^3.48.0",
"svelte-check": "^2.7.0",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.10.6",
"tailwindcss": "^3.0.24",
"tslib": "^2.4.0",
"typescript": "~4.6.4"
},
"type": "module",
"dependencies": {
"@tailwindcss/typography": "^0.5.2",
"lodash-es": "^4.17.21",
"luxon": "^2.3.2"
}
}