-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.52 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
{
"name": "react-tag",
"version": "0.0.0",
"description": "React tag component",
"main": "lib/es/index.js",
"module": "lib/es/index.js",
"types": "lib/es/types/index.d.ts",
"scripts": {
"build-storybook": "storybook build",
"build": "rollup -c",
"lint:fix": "eslint src --quiet --fix",
"lint": "eslint src",
"postversion": "git push && git push --tags",
"predeploy": "npm run build-storybook",
"preversion": "npm run lint && npm run test",
"storybook": "storybook dev -p 6006",
"test": "jest",
"version": "npm run build && npm run build-storybook && git add -A lib storybook-static",
"watch": "rollup -c -w"
},
"files": [
"/lib/"
],
"keywords": [
"jest",
"npm",
"react",
"storybook",
"typescript"
],
"peerDependencies": {
"react": "18",
"react-dom": "18"
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.5",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-interactions": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/blocks": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/react-vite": "7.4.6",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.5",
"@types/react": "18.2.28",
"@types/styled-components": "5.1.28",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.15",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "4.0.2",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"rollup-watch": "4.3.1",
"storybook": "7.4.6",
"ts-jest": "29.1.1",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vite": "4.4.11",
"@storybook/addon-styling": "1.3.7"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@fortawesome/react-fontawesome": "0.2.0",
"styled-components": "5.3.9"
}
}