-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.37 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
104
105
106
107
108
109
110
111
112
113
{
"name": "@abw/badger-ui",
"version": "2.0.0-beta.18",
"description": "CSS/React User Interface Components",
"author": "Andy Wardley",
"type": "module",
"main": "dist/badger-ui.cjs",
"module": "dist/badger-ui.mjs",
"exports": {
".": {
"import": "./dist/badger-ui.mjs",
"require": "./dist/badger-ui.cjs"
},
"./config/*": "./dist/config/*",
"./styles/*": "./dist/styles/*"
},
"files": [
"dist/*"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/abw/badger-ui/issues"
},
"homepage": "https://abw.github.io/badger-ui/",
"bin": {
"badger-ui-icons": "./dist/bin/badger-ui-icons.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && rollup --config",
"lint": "eslint 'src/**/*' 'stories/**/*.jsx'",
"lint:fix": "eslint --fix 'src/**/*'",
"icons": "svg-icon-librarian -f icons/config.yaml -c icons/custom -o src/config/icons.js -y",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook"
},
"devDependencies": {
"@abw/badger": "^1.1.10",
"@abw/react-context-generator": "2.0.0",
"@abw/svg-icon-librarian": "^1.0.9",
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/react": "^6.5.16",
"autoprefixer": "^10.4.14",
"babel": "^6.23.0",
"babel-loader": "^8.3.0",
"colors": "^1.4.0",
"css-loader": "5.2.6",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.13",
"history": "^5.3.0",
"js-yaml": "^4.1.0",
"postcss": "^8.4.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.58.3",
"sass-loader": "10.2.0",
"style-loader": "2.0.0",
"yup": "^0.32.11"
},
"peerDependencies": {
"@abw/react-context-generator": "^2.0.0",
"@abw/svg-icon-librarian": "^1.0.9",
"history": "^5.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0"
},
"dependencies": {
"@abw/badger-utils": "^1.0.17",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abw/badger-ui.git"
},
"keywords": [
"React",
"UI"
]
}