-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.8 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
{
"name": "openspace-webgui",
"version": "1.0.0",
"description": "",
"main": "src/index.jsx",
"private": true,
"scripts": {
"lint-fix": "eslint --fix --ext .jsx --ext .js src",
"lint": "eslint --ext .jsx --ext .js src",
"lint-nice": "eslint --ext .jsx --ext .js src || exit 0;",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "copyfiles index.html environment.js dist && webpack-dev-server --progress --host 0.0.0.0 --port 4690",
"prebuild": "npm install && rimraf dist",
"build": "cross-env NODE_ENV=production webpack --mode production --config webpack.config.production.js",
"postbuild": "copyfiles index.html dist",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSpace/OpenSpace.git"
},
"author": "OpenSpace Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenSpace/OpenSpace/issues"
},
"homepage": "https://github.com/OpenSpace/OpenSpace#readme",
"dependencies": {
"@hello-pangea/dnd": "^16.0.1",
"core-js": "^3.11.2",
"d3": "^7.8.2",
"d3-scale": "^4.0.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"lodash": "^4.17.21",
"openspace-api-js": "^0.1.5",
"prop-types": "^15.7.2",
"re-resizable": "^6.9.9",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.3",
"react-icons": "^4.10.1",
"react-lazy-load-image-component": "^1.5.5",
"react-redux": "^7.2.8",
"react-refresh": "^0.14.0",
"react-rnd": "^10.3.7",
"react-router-dom": "^6.3.0",
"react-select": "^5.4.0",
"react-simple-keyboard": "^3.2.72",
"react-virtualized": "^9.22.3",
"redux": "^4.2.0",
"sass": "^1.49.9",
"shallow-equal": "^3.1.0",
"simple-keyboard-layouts": "^3.0.176",
"spherical-geometry-js": "^3.0.0",
"svg-react-loader": "^0.4.6"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.14.1",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"flow-bin": "^0.182.0",
"rimraf": "^3.0.2",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": 3
}
],
"@babel/preset-react",
"@babel/preset-flow"
]
}
}