This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 2.56 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"author": {
"email": "~TODO~",
"name": "~TODO~",
"url": "~TODO~"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/preset-env": "7.18.9",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/addon-storyshots": "6.5.9",
"@storybook/addon-svelte-csf": "2.0.6",
"@storybook/svelte": "6.5.9",
"@sveltejs/kit": "next",
"@testing-library/cypress": "8.0.3",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"babel-loader": "8.2.5",
"chromatic": "6.7.1",
"cypress": "9.7.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-svelte3": "4.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-svelte": "2.7.0",
"start-server-and-test": "1.14.0",
"svelte": "3.49.0",
"svelte-check": "2.8.0",
"svelte-loader": "3.1.3",
"svelte-preprocess": "4.10.7",
"svelte2tsx": "0.5.12",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"homepage": "~TODO~",
"license": "~TODO~",
"lint-staged": {
"*.{js, ts, svelte}": [
"eslint --fix"
],
"*.{svelte, html, css, scss, stylus, js, ts, json, yml, yaml, md}": [
"prettier --write --plugin-search-dir=."
]
},
"name": "~TODO~",
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true
},
"repository": {
"type": "git",
"url": "~TODO~"
},
"scripts": {
"build": "svelte-kit build",
"build-storybook": "build-storybook",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"chromatic": "chromatic --exit-zero-on-changes",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "svelte-kit dev",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"lint": "eslint --ignore-path .gitignore .",
"package": "svelte-kit package",
"prepare": "svelte-kit sync",
"preview": "svelte-kit preview",
"storybook": "start-storybook -p 6006",
"test": "start-server-and-test storybook http://localhost:6006 cy:run"
},
"type": "module",
"version": "0.0.1"
}