-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) · 5.02 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@radicalbit/radicalbit-design-system",
"version": "1.7.2",
"main": "dist/index.js",
"repository": "https://github.com/radicalbit/radicalbit-design-system",
"author": "https://github.com/radicalbit",
"license": "MIT",
"scripts": {
"analyze": "webpack --mode=production --env analyze",
"prepare": "yarn build",
"build": "webpack --mode=production --config ./config/webpack.prod.js",
"clean": "rimraf lib dist",
"code-check": "yarn eslint-check && yarn less-check",
"eslint-autofix": "eslint ./ --fix",
"eslint-check": "eslint ./",
"less-autofix": "stylelint \"**/*.less\" --fix",
"less-check": "stylelint \"**/*.less\"",
"lint": "eslint src --ext js",
"pre-commit-check": "yarn eslint-check && yarn less-check",
"webpack-build:dev": "webpack --config ./config/webpack.dev.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"husky": {
"hooks": {
"pre-push": "echo 'pre-push hook' && yarn pre-commit-check"
}
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "7.23.3",
"@babel/runtime": "^7.12.5",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-webpack5": "^7.6.7",
"@storybook/test": "^7.6.7",
"@svgr/webpack": "^4.3.3",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "29.5.11",
"@types/node": "20.10.6",
"@types/react": "18.2.46",
"@types/react-color": "3.0.12",
"@types/react-dom": "18.2.18",
"@types/react-is": "18.2.4",
"@types/reactour": "1.18.5",
"@types/systemjs": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-webpack-alias": "^2.1.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "5.0.4",
"cross-env": "^7.0.3",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^7.0.0",
"eslint-config-react-important-stuff": "^3.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-storybook": "0.6.15",
"eslint-webpack-plugin": "^2.5.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "5.6.0",
"husky": "^4.3.5",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^6.0.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"less": "^3.13.1",
"less-loader": "^8.0.0",
"postcss-loader": "^5.1.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-dev-utils": "11.0.2",
"react-test-renderer": "^18.2.0",
"single-spa-react": "^5.0.0",
"source-map-loader": "4.0.2",
"storybook": "^7.6.7",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"webpack": "^5.8.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^4.2.0",
"webpack-config-single-spa-react": "^4.0.4",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.4.0",
"webpack-notifier": "^1.8.0"
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "0.2.0",
"@lucataglia/react-json-tree": "0.18.0",
"ace-builds": "^1.4.12",
"antd": "4.24.10",
"classnames": "^2.2.6",
"codemirror": "^5.49.2",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"postcss-custom-properties": "^11.0.0",
"react": "^18.2.0",
"react-ace": "^9.4.0",
"react-codemirror2": "^6.0.0",
"react-color": "^2.19.3",
"react-dnd": "^14.0.3",
"react-dnd-html5-backend": "^14.0.1",
"react-dom": "^18.2.0",
"react-highlight-words": "^0.16.0",
"react-hot-loader": "^4.12.15",
"react-is": "^18.2.0",
"react-jsonschema-form": "^2.0.0-alpha.1",
"react-markdown": "9.0.1",
"reactour": "^1.18.6",
"remark-gfm": "^4.0.0",
"sql-formatter": "^2.3.3",
"styled-components": "^4.0.0",
"ts-loader": "9.5.1",
"typescript": "5.1.6"
},
"resolutions": {
"babel-loader": "8.1.0"
},
"files": [
"dist"
]
}