forked from qiekub/map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.18 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
{
"license": "UNLICENSED",
"dependencies": {
"@apollo/client": "^3.1.3",
"@fluent/bundle": "^0.15.0",
"@fluent/langneg": "^0.4.0",
"@fluent/react": "^0.12.0",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"@reach/router": "^1.3.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"apollo-cache-persist": "^0.1.1",
"graphql": "^14.6.0",
"immutability-helper": "^3.0.2",
"intl-pluralrules": "^1.1.2",
"leaflet": "^1.6.0",
"mapbox-gl": "^1.12.0",
"match-sorter": "^4.1.0",
"material-ui-popup-state": "^1.5.3",
"node-fetch": "2",
"react": "^16.13.0",
"react-cookie": "^4.0.3",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dnd-touch-backend": "^10.0.2",
"react-dom": "^16.13.0",
"react-leaflet": "^2.6.1",
"react-scripts": "3.4.0",
"source-map-explorer": "^2.4.2",
"store": "^2.0.12",
"typeface-roboto": "^0.0.75"
},
"scripts": {
"buildData": "cd ./src/data/; node ./build_address_formats_files.js; node ./build_category_files.js; node ./build_ilga_datasets.js; cd ../../;",
"saveLocalIP": "ifconfig | grep -Eo 'inet (addr:)?([0-9]*\\.){3}[0-9]*' | grep -Eo '([0-9]*\\.){3}[0-9]*' | grep -v '127.0.0.1' | echo \"\\\"$(cat)\\\"\" > ./src/.env.local_ip.json",
"serve": "yarn saveLocalIP; yarn start",
"serve-prod": "yarn build; yarn saveLocalIP; PORT=3000 serve -s build",
"deploy": "yarn buildData; yarn build; firebase deploy; yarn saveLocalIP;",
"start": "HTTPS=false PORT=3000 react-scripts start",
"build": "echo \"\\\"\\\"\" > ./src/.env.local_ip.json; react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "16"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}