-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "hacktj-2020",
"version": "1.0.0",
"private": true,
"homepage": "https://hacktj.org/2020",
"dependencies": {
"chart.js": "^3.0.0-alpha",
"eslint": "^7.3.0",
"eslint-plugin-flowtype": "^5.1.3",
"lodash": "^4.17.15",
"mapbox-gl": "^1.11.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.13.1",
"react-map-gl": "^5.2.7",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-smooth-collapse": "^2.1.0",
"react-tooltip": "^4.2.7"
},
"scripts": {
"start": "yarn run switch-homepage && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"flow": "flow",
"tint": "./tint-sponsors '#6BE667'",
"switch-event": "./switch event",
"switch-homepage": "./switch homepage",
"predeploy": "yarn run build && NODE_DEBUG=gh-pages",
"deploy-event": "yarn run switch-event && yarn run predeploy && timestamp=$(date -u +\"%FT%TZ\") && gh-pages -d build -m \"Update $timestamp\"",
"deploy-homepage": "yarn run switch-homepage && yarn run predeploy && timestamp=$(date -u +\"%FT%TZ\") && gh-pages -b master -d build -m \"Update $timestamp\" && yarn run switch-event",
"deploy-all": "yarn run deploy-event && yarn run deploy-homepage"
},
"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"
]
},
"devDependencies": {
"flow-bin": "^0.127.0",
"gh-pages": "^3.1.0"
}
}