-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
123 lines (123 loc) · 3.63 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
{
"name": "yum-dashboard",
"version": "0.2.6",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --config .prettierrc --write",
"git add"
]
},
"dependencies": {
"@ant-design/icons": "^v4.0.0-alpha.11",
"antd": "^4.1.0",
"core-js": "^3.6.4",
"dayjs": "^1.8.23",
"i18next": "^19.3.1",
"immutable": "^4.0.0-rc.12",
"jsbn": "^1.1.0",
"leemon": "^6.2.0",
"libphonenumber-js": "^1.7.46",
"markdown-to-jsx": "^6.11.0",
"parse": "^2.11.0",
"rc-queue-anim": "^1.8.4",
"rc-texty": "^0.2.0",
"re-resizable": "^6.2.0",
"react": "^16.12.0",
"react-i18next": "^11.3.3",
"react-monaco-editor": "^0.35.0",
"react-router-dom": "^5.1.2",
"rusha": "^0.8.13",
"zlibjs": "^0.3.1"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"push-patch": "yarn version --patch && git push --follow-tags",
"push-minor": "yarn version --minor && git push --follow-tags",
"push-major": "yarn version --major && git push --follow-tags"
},
"jest": {
"moduleNameMapper": {
"^@$": "<rootDir>/src",
"^@js$": "<rootDir>/src/js",
"^@pages$": "<rootDir>/src/pages/",
"^@widgets$": "<rootDir>/src/widgets/",
"^@locales$": "<rootDir>/src/locales/i18n"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.001%",
"not dead",
"not op_mini all",
"ie >= 9"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-backgrounds": "^5.3.14",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-storysource": "^5.3.14",
"@storybook/addons": "^5.3.14",
"@storybook/preset-ant-design": "^0.0.1",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^6.0.0-alpha.20",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^7.1.2",
"antd-theme-webpack-plugin": "^1.3.1",
"babel-plugin-import": "^1.13.0",
"css-loader": "^3.4.2",
"customize-cra": "^1.0.0-alpha.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"fbemitter": "^2.1.1",
"husky": "^4.2.1",
"jest-puppeteer": "^4.4.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^10.0.7",
"monaco-editor-webpack-plugin": "^1.9.0",
"prettier": "^1.19.1",
"puppeteer": "^2.1.1",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.12.0",
"react-scripts": "3.1.1",
"react-test-renderer": "^16.12.0",
"source-map-explorer": "^2.2.2",
"style-loader": "^1.1.3",
"stylelint": "^13.1.0",
"stylelint-config-prettier": "^7.0.0",
"stylelint-prettier": "^1.1.2",
"worker-loader": "^2.0.0"
}
}