-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "wikimap",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.16.2",
"d3-polygon": "^1.0.3",
"d3-scale": "^1.0.6",
"d3-voronoi": "^1.1.2",
"prop-types": "^15.5.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0",
"three-orbitcontrols": "^1.2.0",
"three-text2d": "^0.3.4",
"three.js": "^0.77.1",
"tween.js": "^16.6.0",
"tweenjs": "^0.0.0"
},
"devDependencies": {
"react-scripts": "1.0.7"
},
"scripts": {
"start": "ENVIRONMENT='development' react-scripts start",
"build": "react-scripts build",
"tar": "tar czf build.tar.gz build",
"upload": "scp build.tar.gz $SERVER_ADDRESS:$SERVER_PATH",
"build-on-server": "ssh $SERVER_ADDRESS $SERVER_SCRIPT",
"deploy": "npm run build; npm run tar; npm run upload; npm run build-on-server",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}