-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpackage.json
102 lines (102 loc) · 3.58 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
{
"name": "concord-console",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@babel/preset-react": "7.16.0",
"@datasert/cronjs-matcher": "^1.4.0",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.3",
"@types/lodash": "4.14.178",
"@types/node": "16.11.12",
"@types/prop-types": "15.7.4",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.20",
"@types/react-router": "5.1.17",
"@types/react-router-dom": "5.3.2",
"@types/redux-logger": "3.0.9",
"@types/sinon": "10.0.6",
"@types/styled-components": "5.1.17",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/typescript-estree": "5.35.1",
"babel-cli": "6.26.0",
"babel-core": "7.0.0-bridge.0",
"babel-preset-es2015": "6.24.1",
"eslint": "7.32.0",
"express": "4.17.1",
"express-http-proxy": "1.6.3",
"prettier": "2.5.1",
"react-hooks-testing-library": "0.6.0",
"redux-devtools-extension": "2.13.9",
"shx": "0.3.3",
"ts-node": "10.4.0",
"typescript": "4.8.2"
},
"dependencies": {
"@monaco-editor/react": "4.3.1",
"ansi_up": "4.0.4",
"connected-react-router": "6.9.2",
"constate": "3.3.0",
"copy-to-clipboard": "3.3.1",
"date-fns": "2.27.0",
"formik": "2.2.9",
"history": "4.10.1",
"lodash": "4.17.21",
"parse-domain": "4.1.0",
"query-string": "7.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.21.2",
"react-idle-timer": "5.4.1",
"react-json-view": "1.21.3",
"react-redux": "7.2.6",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"react-spring": "9.3.2",
"reakit": "1.3.11",
"redux": "4.1.2",
"redux-logger": "3.0.6",
"redux-saga": "1.1.3",
"semantic-ui-calendar-react": "0.15.3",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.0.4",
"styled-components": "5.3.3",
"styled-tools": "1.7.2",
"typeface-lato": "1.1.13",
"url-search-params-polyfill": "8.1.1"
},
"scripts": {
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && ./npm.sh run hack:remove-sui-css-dep && react-scripts build",
"hack:remove-sui-css-dep": "shx --silent sed -i @import /*import node_modules/semantic-ui-css/semantic.min.css > /dev/null 2>&1",
"dev": "export SET NODE_OPTIONS=--openssl-legacy-provider && babel-node --presets es2015 scripts/devServer.js",
"test": "react-scripts test",
"test:watch": "./npm.sh test --watch",
"pretty": "prettier --tab-width 4 --print-width 100 --single-quote --jsx-bracket-same-line --arrow-parens 'always' parser 'typescript' --write 'src/**/*.{ts,tsx}'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"import/no-anonymous-default-export": [
2,
{
"allowArrowFunction": true,
"allowAnonymousFunction": true,
"allowAnonymousClass": true
}
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:8001"
}