forked from invertase/react-query-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "@react-query-firebase/root",
"private": true,
"description": "React Query hooks for Firebase.",
"keywords": [
"react",
"react-query",
"firebase",
"hooks"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.20",
"axios": "^0.21.4",
"babel-jest": "^27.1.1",
"codecov": "^3.8.3",
"firebase": "^9.0.1",
"jest": "^27.1.1",
"jest-environment-jsdom": "^27.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.23.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2"
},
"scripts": {
"test": "firebase emulators:exec --project test-project 'jest'",
"test:ci": "firebase emulators:exec --project test-project 'sleep 5 && jest --coverage && codecov'",
"lint": "eslint \"**/*.{js,ts,tsx,jsx}\"",
"lint:fix": "eslint \"**/*.{js,ts,tsx,jsx}\" --fix",
"emulators": "firebase emulators:exec --project test-project"
}
}