-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.48 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.48 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
98
99
100
101
102
103
104
105
106
{
"name": "cloe-ui",
"version": "0.25.0",
"cloe-compatibility": "0.16",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@ant-design/compatible": "^1.0.2",
"@ant-design/icons": "^4.1.0",
"antd": "^4.2.0",
"axios": "^0.21.2",
"bootstrap": "^4.3.1",
"chart.js": "^2.8.0",
"chartjs-plugin-zoom": "^0.7.3",
"jquery": "^3.4.1",
"jsonpath": "^1.0.2",
"less": "^3.9.0",
"mathjs": "^7.5.1",
"node-gyp": "9.3.0",
"sass": "^1.56.1",
"plotly.js": "^2.2.1",
"randomcolor": "^0.5.4",
"react": "^16.8.6",
"react-beautiful-dnd": "^11.0.4",
"react-chartjs-2": "^2.7.6",
"react-cookie": "^4.0.0",
"react-dom": "^16.8.6",
"react-rangeslider": "^2.2.0",
"react-scripts": "^3.0.1",
"react-scroll": "^1.7.12",
"react-switch": "^5.0.1",
"serve": "^13.0.2",
"socket.io-client": "^4.1.3",
"three": "^0.137.0",
"three-orbit-controls": "^82.1.0",
"three-spritetext": "^1.5.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build_v18": "react-app-rewired --openssl-legacy-provider build",
"test": "react-scripts test --env=jsdom"
},
"description": "Web-based user interface for cloe",
"main": "src/index.js",
"devDependencies": {
"babel-plugin-import": "^1.12.0",
"customize-cra": "^0.2.14",
"dayjs": "^1.8.26",
"eslint": "^9.26.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"less-loader": "^5.0.0",
"popper.js": "^1.16.1",
"prettier": "^1.16.3",
"react-app-rewired": "^2.1.3",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/eclipse/cloe"
},
"author": "Robert Bosch GmbH",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"plugins": [
"react"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": false
},
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"react-app"
]
},
"prettier": {
"printWidth": 100,
"arrowParens": "always",
"semi": true,
"tabWidth": 2
},
"proxy": "http://localhost:4000"
}