-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (119 loc) · 3.99 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "firething",
"version": "0.0.1",
"description": "Project generated by generator-react-firebase",
"main": "index.js",
"scripts": {
"build": "craco build",
"eject": "craco eject",
"setup": "echo \"Generating client config...\" && env-cmd bin/generate-firebase-sdk-config.js --file ./config/default.json",
"check-config": "if [ ! -f ./src/client-config.json ]; then yarn setup; else echo \"Client config already exists, running command...\"; fi;",
"start": "yarn check-config && env-cmd craco start",
"start:dist": "yarn build && firebase emulators:start --only hosting",
"start:emulate": "cross-env NODE_APP_INSTANCE=emulators yarn start",
"test": "craco test",
"functions:start": "yarn --cwd functions start",
"functions:watch": "yarn --cwd functions watch",
"functions:build": "yarn --cwd functions build",
"functions:test": "firebase emulators:exec --only firestore,database,pubsub \"yarn --cwd functions test:base\"",
"functions:test:cov": "firebase emulators:exec --only firestore,database,pubsub \"yarn --cwd functions test:cov:base\"",
"test:ui:run": "env-cmd cypress run",
"test:ui": "env-cmd cypress open",
"test:ui:emulate": "cross-env NODE_APP_INSTANCE=emulators npm run test:ui",
"emulators": "firebase emulators:start --only firestore,database,pubsub",
"emulators:hosting": "firebase emulators:start --only firestore,database,hosting",
"emulators:all": "firebase emulators:start",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"format": "prettier --single-quote --no-semi --trailing-comma none --write \"src/**/*.js\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/firething.git"
},
"engines": {
"node": ">14.15.0"
},
"author": "prescottprue (https://github.com/prescottprue)",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@sentry/browser": "^6.4.0",
"firebase": "^8.6.1",
"notistack": "^1.0.7",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-button": "^0.7.2",
"react-hook-form": "^7.6.0",
"react-router-dom": "^5.2.0",
"reactfire": "^3.0.0-rc.0",
"stackdriver-errors-js": "^0.8.0"
},
"devDependencies": {
"@craco/craco": "6.1.2",
"@sentry/cli": "^1.64.2",
"@testing-library/cypress": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-eslint": "^10.1.0",
"config": "^3.3.6",
"cross-env": "^7.0.3",
"cypress": "^7.3.0",
"cypress-firebase": "^1.9.1",
"env-cmd": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsdoc": "^34.7.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"firebase-admin": "^9.8.0",
"firebase-ci": "^0.15.0",
"firebase-tools": "^9.10.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"minimist": "1.2.5",
"prettier": "^2.3.0",
"react-scripts": "^4.0.3",
"react-test-renderer": "^17.0.2",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": "./eslintrc.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,jsx,ts}": [
"eslint --fix"
]
},
"config": {
"port": 3000
}
}