-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"name": "@sbcguard/component-lib",
"version": "0.0.1",
"description": "React Component Library",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write .",
"lint:format": "prettier --check .",
"lint": "eslint src/**",
"build-lib": "rollup -c",
"save-all": "prettier --write . && git add . && git commit -m 'autosave' && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbcguard/component-lib.git"
},
"keywords": [
"react",
"components"
],
"author": "AJ Rugen",
"license": "ISC",
"bugs": {
"url": "https://github.com/sbcguard/component-lib/issues"
},
"homepage": "https://github.com/sbcguard/component-lib#readme",
"peerDependencies": {
"react": ">=16.12.0",
"react-bootstrap": "^2.8.0",
"react-dom": ">=16.12.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.3",
"@storybook/addon-a11y": "^7.4.0",
"@storybook/addon-controls": "^7.4.0",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addon-mdx-gfm": "^7.4.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "^0.2.1-next.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"bootstrap": "^5.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.65.1",
"storybook": "^7.4.0",
"typescript": "^5.1.6"
}
}