forked from openmobilityfoundation/mds-compliance-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.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
{
"name": "lacuna-compliance-mobile",
"description": "Lacuna Compliance Mobile application",
"version": "1.0.1",
"private": true,
"dependencies": {
"@ionic/react": "^4.9.0-rc.2",
"@turf/helpers": "^6.1.4",
"auth0-js": "9.11.3",
"cheap-ruler": "^2.5.1",
"connected-react-router": "^6.3.2",
"history": "^4.9.0",
"ionicons": "^4.6.3",
"lodash": "^4.17.14",
"mapbox-gl": "^0.53.1",
"mds-core": "git+ssh://git@github.com:CityOfLosAngeles/mds-core#@mds-core/mds-providers@0.1.5",
"memoize-one": "^5.0.4",
"moment-timezone": "^0.5.23",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^6.0.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"use-debounce": "^1.1.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"node-sass": "^4.12.0",
"prettier": "^1.18.2"
},
"scripts": {
"postinstall": "yarn build:deps",
"build:deps": "cd node_modules/mds-core && yarn && yarn build && cd ../..",
"start": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` react-scripts start",
"build:staging": "env-cmd .env.staging yarn run _build",
"build:production": "env-cmd .env.production yarn run _build",
"deploy:staging": "env-cmd .env.staging yarn run _deploy",
"deploy:production": "env-cmd .env.production yarn run _deploy",
"test": "react-scripts test",
"lint": "eslint src/. --ext .js,.jsx",
"eject": "react-scripts eject",
"_build": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` react-scripts build",
"_deploy": "yarn run _build && . scripts/s3deploy.sh"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}