-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
108 lines (108 loc) · 3.42 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
103
104
105
106
107
108
{
"name": "growth-lab-app-front-end",
"version": "0.1.0",
"private": true,
"license": "CC BY-NC-SA 4.0",
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.4",
"@mui/material": "^6.1.4",
"@mui/system": "^6.1.4",
"@react-spring/web": "^9.7.5",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@typeform/embed-react": "^4.1.0",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.12",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^22.7.7",
"@types/query-string": "^6.3.0",
"@types/react": "^18.3.11",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@visx/responsive": "^3.10.2",
"@visx/tooltip": "^3.3.0",
"apollo-boost": "^0.4.9",
"canvg": "^4.0.2",
"csvtojson": "^2.0.10",
"d3": "^7.9.0",
"flubber": "^0.4.2",
"graphql": "^15.9.0",
"graphql-tag": "^2.12.6",
"hyparquet": "^1.5.0",
"intersection-observer": "^0.12.2",
"lodash": "^4.17.21",
"mapbox-gl": "^3.7.0",
"material-react-table": "^3.0.1",
"node-sass": "^9.0.0",
"npm": "^10.9.0",
"plotly.js": "^2.35.2",
"polished": "^4.3.1",
"prettier": "^3.3.3",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.3.1",
"react-dropdown-tree-select": "^2.8.0",
"react-fast-charts": "^1.2.5",
"react-ga": "^3.3.1",
"react-ga4": "^2.1.0",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^9.13.1",
"react-mapbox-gl": "^5.1.1",
"react-panel-search": "^1.5.0",
"react-plotly.js": "^2.6.0",
"react-router": "^6.27.0",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.1",
"react-scrollama": "^2.3.3",
"react-use": "^17.5.1",
"recharts": "^2.13.0",
"recoil": "^0.7.7",
"styled-components": "^6.1.13",
"tslint": "^6.1.3",
"typescript": "^5.6.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && mv build dist",
"postbuild": "node prerender-metadata.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:fix": "tslint --project tsconfig.json --config tslint.json --fix",
"clean:cache": "rimraf node_modules/.cache",
"connect:staging": "ssh -i hks-country-tools.pem [email protected]",
"connect:production": "ssh -i hks-country-tools.pem [email protected]",
"deploy:staging": "npm run build && rsync -rq --delete --rsync-path=\"mkdir -p /srv/frontend && rsync\" ./build [email protected]:/srv/frontend",
"deploy:production": "npm run build && rsync -rq --delete --rsync-path=\"mkdir -p /home/ubuntu/frontend && rsync\" ./build [email protected]:/home/ubuntu/frontend"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"no-restricted-globals": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"raw.macro": "^0.6.0"
}
}