-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.43 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
{
"name": "flowify",
"proxy": "http://localhost:8842/",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "7.0.0",
"@equinor/eds-core-react": "0.26.0",
"@equinor/eds-icons": "0.16.0",
"@equinor/opt-ui-core": "^6.11.0",
"@equinor/opt-ui-icons": "^6.11.0",
"@monaco-editor/react": "4.4.6",
"dagre": "^0.8.5",
"downshift": "7.0.1",
"event-source-polyfill": "^1.0.25",
"formik": "^2.2.9",
"js-yaml": "^4.1.0",
"moment": "^2.29.3",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "18.2.0",
"react-flow-renderer": "10.3.17",
"react-helmet-async": "^1.3.0",
"react-json-view": "^1.21.3",
"react-modal": "^3.16.1",
"react-router": "6.4.3",
"react-router-dom": "6.4.3",
"react-scripts": "^5.0.1",
"rxjs": "7.5.7",
"sass": "1.56.1",
"source-map-explorer": "2.5.3",
"styled-components": "5.3.6",
"superagent": "8.0.3",
"superagent-promise": "^1.1.0",
"typescript": "4.8.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"analyze": "source-map-explorer 'build/static/js/*.js' --gzip"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/dagre": "^0.7.46",
"@types/event-source-polyfill": "^1.0.0",
"@types/jest": "29.2.2",
"@types/js-yaml": "^4.0.3",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "18.0.8",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.1.9",
"@types/styled-components": "^5.1.25",
"@types/superagent": "^4.1.13",
"jest-watch-typeahead": "^2.2.0"
},
"jest": {
"moduleNameMapper": {
"^@ui": "<rootDir>/src/components/ui/",
"^@models/v2": "<rootDir>/src/models/v2/",
"^@services": "<rootDir>/src/services/",
"^@form": "<rootDir>/src/components/form/",
"^@common": "<rootDir>/src/common/"
}
}
}