-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.26 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "svelte-demo-tab",
"version": "0.0.0-development",
"description": "1Svelte component to easily create demos of other components",
"svelte": "./src/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"start": "npm run storybook",
"prepare": "husky install",
"build": "shx rm -rf dist && rollup -c",
"lint": "eslint --max-warnings 0 . && npm run tsc",
"lint-fix": "eslint --fix .",
"lint-staged-husky": "lint-staged",
"tsc": "tsc -p tsconfig.dev.json",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"commit": "git-cz",
"test": "jest --verbose --watch",
"test-coverage": "jest --coverage --verbose",
"storybook": "start-storybook -p 9009",
"storybook-build": "build-storybook"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addons": "^6.5.0-beta.0",
"@storybook/builder-webpack5": "^6.5.0-beta.0",
"@storybook/manager-webpack5": "^6.5.0-beta.0",
"@storybook/svelte": "^6.5.0-beta.0",
"@storybook/theming": "^6.5.0-beta.0",
"@types/eslint": "^8.4.2",
"@types/jest": "^27.5.1",
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"commitizen": "^4.2.4",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-array-reduce": "^1.0.58",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-testing-library": "^5.5.0",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-config": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rollup": "^2.73.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.6.0",
"svelte": "^3.48.0",
"svelte-jester": "^2.3.2",
"svelte-loader": "^3.1.2",
"semantic-release": "^19.0.2",
"shx": "^0.3.4",
"ts-jest": "^28.0.2",
"tsc-files": "^1.1.3",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkosir/svelte-demo-tab.git"
},
"author": "Marko Kosir <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkosir/svelte-demo-tab/issues"
},
"homepage": "https://mkosir.github.io/svelte-demo-tab",
"keywords": [
"svelte",
"svelte-component",
"demo-component",
"demo",
"demo-tab",
"demotab",
"code",
"tab"
]
}