-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.56 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
{
"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",
"@reach/router": "^1.3.3",
"apollo-cache-persist": "^0.1.1",
"graphql": "^14.6.0",
"immutability-helper": "^3.0.2",
"intl-pluralrules": "^1.1.2",
"react": "^16.13.0",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.0",
"react-scripts": "3.4.0",
"store": "^2.0.12"
},
"scripts": {
"buildData": "cd ./src/data/; node ./build_address_formats_files.js; node ./build_category_files.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=4000 serve -s build",
"deploy": "yarn buildData; yarn build; firebase deploy; yarn saveLocalIP;",
"start": "PORT=4000 react-scripts start",
"build": "echo \"\\\"\\\"\" > ./src/.env.local_ip.json; react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}