This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
107 lines (107 loc) · 3.17 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
{
"name": "open-bridge",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^5.9.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.75",
"@mui/material": "^5.5.3",
"@mui/styled-engine-sc": "^5.5.2",
"@mui/styles": "^5.5.3",
"@mui/x-data-grid": "^5.17.17",
"@mui/x-date-pickers": "^5.0.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@tisoap/react-flow-smart-edge": "^2.0.0",
"@types/dagre": "^0.7.48",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"@types/react": "^17.0.43",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.25",
"clsx": "^1.1.1",
"dagre": "^0.8.5",
"dayjs": "^1.11.6",
"lodash": "^4.17.20",
"react": "^18.0.0",
"react-beautiful-dnd": "^13.0.0",
"react-colorful": "^5.2.3",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-error-boundary": "^3.0.2",
"react-imask": "^6.0.7",
"react-papaparse": "^3.11.1",
"react-pluralize": "^1.6.3",
"react-query": "^3.21.0",
"react-router-dom": "^5.2.0",
"react-router-navigation-prompt": "^1.8.13",
"react-scripts": "^5.0.1",
"reactflow": "^11.0.0",
"stream": "^0.0.2",
"styled-components": "^5.3.5",
"ts-jest": "^27.1.3",
"typescript": "^4.0.0"
},
"jest": {
"moduleNameMapper": {
"^@components/(.*)$": "<rootDir>/src/components/$1",
"^@assets(.*)$": "<rootDir>/src/assets/$1",
"^@helpers(.*)$": "<rootDir>/src/helpers/$1",
"^@services(.*)$": "<rootDir>/src/services/$1",
"^@typedefs/(.*)$": "<rootDir>/src/types/$1",
"^@style/(.*)$": "<rootDir>/src/style/$1"
}
},
"scripts": {
"start": "PORT=3003 craco start",
"start:mtb": "PORT=3000 craco start",
"start:arc": "PORT=3001 craco start",
"start:invarc": "PORT=3002 craco start",
"start:bridge": "PORT=3003 craco start",
"build": "craco build",
"test": "craco test --coverage --watch",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"prettier": "prettier --config .prettierrc --write '**/*.{ts,scss,html,tsx,json}'",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:react-hooks/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/faker": "^5.1.7",
"@types/lodash": "^4.14.168",
"@types/react-dom": "^18.0.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.5.0",
"faker": "^5.4.0",
"msw": "^0.26.0",
"prettier": "^2.3.2"
},
"resolutions": {
"minimatch": "^3.1.2",
"tough-cookie": "^4.1.3"
}
}