forked from Geovation/plastic-patrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 2.95 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
{
"name": "plastic-patrol",
"title": "Plastic Patrol",
"version": "2.4.4",
"public": true,
"homepage": "./",
"dependencies": {
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.1.0",
"@turf/turf": "^5.1.6",
"blueimp-load-image": "^2.24.0",
"classnames": "^2.2.6",
"dms2dec": "^1.1.0",
"firebase": "^6.6.1",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"mapbox-gl": "^1.3.1",
"md5": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-firebaseui": "^4.0.0",
"react-ga": "^2.5.6",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.3",
"react-swipe": "^6.0.4"
},
"scripts": {
"start": "./scripts/runWithVars.sh 'HTTPS=true react-scripts start'",
"build": "npm run build:react",
"test": "react-scripts test --env=jsdom --forceExit",
"eject": "react-scripts eject",
"backup": "./scripts/backup.sh",
"serve-prod": "npm run build:react && http-server build",
"build:ios": "./scripts/runWithVars.sh 'mkdir -p ./cordova-app/www/ && cp -a ./build/* ./cordova-app/www/ && cd cordova-app && cordova platform rm ios && cordova platform add ios && cordova build ios --prod --release --device --buildConfig build.json && cd ..'",
"build:ios:dev": "./scripts/runWithVars.sh 'mkdir -p ./cordova-app/www/ && cp -a ./build/* ./cordova-app/www/ && cd cordova-app && cordova build ios --debug --buildFlag=\"-UseModernBuildSystem=0\" && cd ..'",
"build:android": "./scripts/runWithVars.sh 'mkdir -p ./cordova-app/www/ && cp -a ./build/* ./cordova-app/www/ && cd cordova-app && cordova platform rm android && cordova platform add android && cordova build android --prod --release --buildConfig build.json && cd ..'",
"build:android:dev": "./scripts/runWithVars.sh 'mkdir -p ./cordova-app/www/ && cp -a ./build/* ./cordova-app/www/ && cd cordova-app && cordova build android && cd ..'",
"build:react": "./scripts/runWithVars.sh 'react-scripts build'",
"beta:android": "cd cordova-app; fastlane android beta --verbose",
"beta:ios": "cd cordova-app; fastlane ios beta",
"coverage": "react-scripts test --env=jsdom --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"geovation-photos-update": "geovation-photos-update",
"start:prod": "npm run build:react && http-server build -S -o"
},
"devDependencies": {
"cordova": "^9.0.0",
"coveralls": "^3.0.6",
"firebase-admin": "^8.5.0",
"firebase-tools": "^7.3.2",
"http-server": "^0.11.1",
"husky": "^3.0.5",
"jimp": "^0.6.8",
"ncp": "^2.0.0",
"node-sass": "^4.11.0",
"precise-commits": "^1.0.2",
"prettier": "^1.18.2",
"random-location": "^1.0.12",
"react-scripts": "^3.1.1",
"rimraf": "^3.0.0",
"workbox-cli": "^4.1.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "precise-commits"
}
}
}