-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
122 lines (122 loc) · 5.11 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
121
122
{
"name": "fireadmin",
"version": "0.10.4",
"description": "Application for Managing Firebase Applications. Includes support for multiple environments and data migrations.",
"scripts": {
"clean": "rimraf build",
"size": "size-limit",
"build": "react-scripts build",
"build:size": "yarn build && size-limit",
"build:size:why": "yarn build && yarn size --why",
"start": "react-scripts start",
"start:dist": "yarn build && yarn serve",
"emulators": "yarn emulators:dbs",
"emulators:dbs": "firebase emulators:start --only firestore,database",
"emulators:all": "firebase emulators:start --only firestore,database,functions",
"emulators:no-functions": "firebase emulators:start --only firestore,database,hosting",
"dev": "concurrently -c yellow,green npm:emulators:dbs \"yarn wait-on:dbs && yarn dev\"",
"wait-on:dbs": "wait-on tcp:$(cat firebase.json | jq '.emulators.database.port') && wait-on tcp:$(cat firebase.json | jq '.emulators.firestore.port')",
"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)\" yarn start",
"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)\" CYPRESS_TEST_UID=$npm_package_config_testUid yarn test:open",
"test:emulate:run": "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)\" CYPRESS_TEST_UID=$npm_package_config_testUid yarn test",
"size:why": " yarn size --why",
"docs:start": "yarn --cwd docs start",
"docs:build": "yarn --cwd docs build",
"functions:start": "yarn --cwd functions start",
"functions:build": "yarn --cwd functions build",
"functions:watch": "yarn --cwd functions watch",
"functions:test": "yarn --cwd functions test",
"functions:test:cov": "yarn --cwd functions test:cov",
"lint": "eslint --ext .js,.ts",
"lint:docs": "eslint docs",
"lint:fix": "yarn lint --fix",
"test": "cross-env CYPRESS_BASE_URL=\"http://localhost:$npm_package_config_port\" CYPRESS_TEST_UID=$npm_package_config_testUid cypress run",
"test:open": "cross-env CYPRESS_BASE_URL=\"http://localhost:$npm_package_config_port\" CYPRESS_TEST_UID=$npm_package_config_testUid cypress open",
"format": "prettier --single-quote --no-semi --trailing-comma none --write \"src/**/*.js\""
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@sentry/browser": "^6.3.6",
"algoliasearch": "^4.9.1",
"classnames": "^2.3.1",
"date-fns": "^2.21.3",
"firebase": "^7.24.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^17.0.2",
"react-dropzone": "^4.2.1",
"react-google-button": "^0.7.0",
"react-hook-form": "^6.15.2",
"react-instantsearch": "^6.9.0",
"react-router-dom": "^5.2.0",
"reactfire": "^2.0.3",
"stackdriver-errors-js": "^0.8.0"
},
"devDependencies": {
"@sentry/cli": "^1.62.0",
"@size-limit/preset-app": "^4.9.2",
"@size-limit/webpack": "^4.9.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.12.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"cypress": "^7.3.0",
"cypress-firebase": "^1.8.0",
"cypress-log-to-output": "^1.1.2",
"cypress-wait-until": "^1.7.1",
"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-babel": "^5.3.1",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsdoc": "^34.6.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.23.2",
"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",
"prettier": "^2.3.0",
"react-scripts": "^4.0.3",
"size-limit": "^4.10.2",
"typescript": "^4.2.4",
"wait-on": "^5.3.0"
},
"browserslist": [],
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/fireadmin.git"
},
"engines": {
"node": ">=12.0.0"
},
"author": "prescottprue (https://github.com/prescottprue)",
"license": "MIT",
"config": {
"port": 3000,
"testUid": "aDLWpwXbcpNAUcWA7pJcJtdw6sC2"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js}": [
"eslint --fix"
]
}
}