-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "state-visualizer",
"version": "0.1.1",
"private": true,
"homepage": "http://mapequation.org/state-visualizer",
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mapequation/c3": "^1.1.1",
"@mapequation/infomap": "^2.6.1",
"@mapequation/infomap-parser": "^1.0.2",
"@mapequation/infomap-react": "^1.0.0",
"@types/d3": "^7.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"d3": "^7.8.2",
"framer-motion": "^9.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-scripts": "^5.0.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"prettier": "^2.8.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "ssh mapequation \"rm -rf /var/www/state-visualizer/static/*\" && scp -r build/* mapequation:/var/www/state-visualizer"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}