-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.83 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.83 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
89
90
91
92
93
94
95
96
97
{
"name": "feathr-ui",
"version": "0.10.4-rc1",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"lintStaged": "lint-staged",
"lint": "npm run lint-eslint && npm run lint-stylelint",
"lint-eslint": "eslint -c .eslintrc --fix --ext .ts,.tsx,.js src",
"lint-stylelint": "stylelint --config .stylelintrc src/**/*.{less,css}"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@azure/msal-browser": "^2.24.0",
"@azure/msal-react": "^1.4.0",
"antd": "^4.23.6",
"axios": "^0.27.2",
"classnames": "^2.3.2",
"dagre": "^0.8.5",
"dayjs": "^1.11.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.7.4",
"react-query": "^3.38.0",
"react-resizable": "^3.0.4",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@craco/craco": "^7.0.0-alpha.8",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/dagre": "^0.7.47",
"@types/jest": "^27.5.0",
"@types/node": "^16.11.26",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-resizable": "^3.0.3",
"babel-plugin-import": "^1.13.5",
"craco-less": "^2.1.0-alpha.0",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"react-scripts": "5.0.1",
"stylelint": "^14.14.0",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^3.4.0",
"web-vitals": "^2.1.4",
"webpack": "^5.74.0",
"webpackbar": "^5.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --config .eslintrc"
],
"*.{css,less,scss}": [
"stylelint --config .stylelintrc"
],
"*.{ts,tsx,js,json,html,yml,css,less,scss,md}": [
"prettier --write"
]
}
}