-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·106 lines (106 loc) · 2.97 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
{
"name": "geovation-photos",
"title": "Geovation Photos",
"version": "0.9.0",
"engines": {
"node": "~16",
"npm": "~7"
},
"description": "Simple Reactjs PWA that allows you to upload photos into a map.",
"main": "index.js",
"public": true,
"scripts": {
"build": "./scripts/runWithVars.sh 'react-scripts build'",
"test": "react-scripts test --env=jsdom --forceExit --watchAll=false",
"test:firebase": "echo it works... trust me !",
"eject": "react-scripts eject",
"backup": "./scripts/backup.sh",
"coverage": "react-scripts test --env=jsdom --coverage --forceExit --watchAll=false",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"start": "./scripts/runWithVars.sh 'react-scripts start'",
"start:secure": "./scripts/runWithVars.sh 'HTTPS=true react-scripts start'",
"start:prod": "firebase emulators:start --only hosting",
"deploy": "./scripts/runWithVars.sh 'cd functions && npm ci && cd .. && firebase deploy --token \"$FIREBASE_TOKEN\"'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Geovation/photos.git"
},
"author": "Geovation, Ordnance Survey",
"license": "MIT",
"bugs": {
"url": "https://github.com/Geovation/photos/issues"
},
"homepage": "./",
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@turf/turf": "^6.3.0",
"coveralls": "latest",
"firebase-admin": "^9.3.0",
"firebase-tools": "^9.13.0",
"husky": "^7.0.0",
"jimp": "^0.16.1",
"ncp": "latest",
"node-sass": "^6.0.0",
"precise-commits": "latest",
"prettier": "^2.1.2",
"queue-promise": "^2.2.1",
"random-location": "^1.1.3",
"react-scripts": "^4.0.3",
"rimraf": "latest",
"web-vitals": "^2.0.1",
"yargs": "^17.0.1"
},
"dependencies": {
"@material-ui/core": "latest",
"@material-ui/icons": "latest",
"@material-ui/lab": "^4.0.0-alpha.58",
"axios": "^0.21.0",
"blueimp-load-image": "^5.14.0",
"chart.js": "^3.3.2",
"classnames": "latest",
"dms2dec": "latest",
"firebase": "^8.6.7",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"mapbox-gl": "^2.3.0",
"md5": "^2.3.0",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebaseui": "latest",
"react-redux": "^7.2.4",
"react-router-dom": "latest",
"react-select": "latest",
"react-swipe": "latest",
"redux": "^4.1.0",
"redux-saga": "^1.1.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "precise-commits"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}