forked from feathr-ai/feathr
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.07 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
{
"name": "feathr-ui",
"version": "0.9.0-rc1",
"private": true,
"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",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-plugin-import": "^1.13.5",
"craco-less": "^2.1.0-alpha.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"react-scripts": "5.0.0",
"typescript": "^4.6.3",
"web-vitals": "^2.1.4",
"webpack": "^5.72.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint:fix": "npx eslint --fix --ext ts --ext tsx src/ ",
"format": "npx prettier --write src/**",
"lintStaged": "lint-staged"
},
"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": {
"**/*": "prettier --write --ignore-unknown"
}
}