This repository was archived by the owner on Sep 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 5.34 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 5.34 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "app",
"version": "0.7.0",
"description": "The spread of Coronavirus (COVID-19) is having a huge impact on our lives, especially those at high risk. It is more important now than ever for us to come together and support our communities, whether it be material support or emotional support. Our goal is to connect those in need with those that are able to help and spread positive vibes.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "react-scripts build",
"build:prod": "env-cmd -f .env.prod react-scripts build",
"build:staging": "env-cmd -f .env.staging react-scripts build",
"build:next": "env-cmd -f .env.next react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"start:dist": "npm run build && firebase emulators:start --only hosting",
"start:emulate": "cross-env REACT_APP_FIREBASE_DATABASE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.database.port)\" REACT_APP_FIRESTORE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.firestore.port)\" npm run start",
"functions:start": "npm run start --prefix functions",
"functions:serve": "npm run serve --prefix functions",
"functions:watch": "npm run watch --prefix functions",
"functions:build": "npm run build --prefix functions",
"functions:test": "firebase emulators:exec --only firestore,database,pubsub \"npm run functions:test:base\"",
"functions:test:cov": "firebase emulators:exec --only firestore,database,pubsub \"npm run functions:test:cov:base\"",
"functions:test:base": "npm run test:base --prefix functions",
"functions:test:cov:base": "npm run test:cov:base --prefix functions",
"test": "env-cmd -f .env.next cypress run",
"test:open": "env-cmd -f .env.next cypress open",
"test:emulate": "cross-env FIREBASE_DATABASE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.database.port)\" FIRESTORE_EMULATOR_HOST=\"localhost:$(cat firebase.json | jq .emulators.firestore.port)\" npm run test:open",
"emulators": "firebase emulators:start --only firestore,database,pubsub",
"emulators:serve": "firebase emulators:start --only firestore,database,pubsub,hosting",
"emulators:all": "firebase emulators:start --only firestore,database,pubsub,functions",
"test-rules": "firebase emulators:exec --only firestore,database \"npm run test-rules:base\"",
"test-rules:base": "cross-env FIRESTORE_EMULATOR_HOST=localhost:$(cat ./firebase.json | jq '.emulators.firestore.port') FIREBASE_DATABASE_EMULATOR_HOST=localhost:$(cat ./firebase.json | jq '.emulators.database.port') PUBSUB_EMULATOR_HOST=$(cat ./firebase.json | jq '.emulators.pubsub.port') mocha --timeout 10000 ./rules-tests/*.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --single-quote --no-semi --trailing-comma none --write \"src/**/*.js\""
},
"dependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.51",
"@react-google-maps/api": "^1.9.0",
"@sentry/browser": "^5.15.5",
"date-fns": "^2.12.0",
"firebase": "^7.14.0",
"geofirestore": "^3.4.1",
"history": "^4.10.1",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"query-string": "^6.12.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-google-button": "^0.7.0",
"react-helmet": "^6.0.0",
"react-hook-form": "^5.6.1",
"react-places-autocomplete": "^7.2.1",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"reactfire": "^2.0.3",
"rxjs": "^6.5.5",
"yup": "^0.28.5"
},
"devDependencies": {
"@googlemaps/google-maps-services-js": "^2.6.0",
"@firebase/testing": "^0.19.0",
"@sentry/cli": "^1.52.3",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"cypress": "^4.5.0",
"cypress-firebase": "^1.1.0",
"cypress-log-to-output": "^1.0.8",
"cypress-wait-until": "^1.6.1",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"firebase-admin": "^8.11.0",
"firebase-ci": "^0.13.0",
"firebase-tools": "^8.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"mocha": "^7.1.1",
"prettier": "^2.0.5",
"react-scripts": "^3.4.0"
},
"eslintConfig": {
"extends": "./eslintrc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CV19Assist/app.git"
},
"engines": {
"node": ">=10.15.0"
},
"author": "CV19Assist (https://github.com/CV19Assist)",
"license": "MIT",
"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": "lint-staged"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"config": {
"port": 3000
}
}