-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.98 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
{
"name": "bubblemap",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@kokarn/react-zoom-pan-pinch": "^2.1.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.8",
"d3-force": "^3.0.0",
"dotenv": "^16.0.3",
"firebase": "^9.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys": "^2.0.0",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.1",
"react-zoom-pan-pinch": "^2.6.0",
"reactfire": "^4.2.2"
},
"overrides": {
"react-zoom-pan-pinch": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"@kokarn/react-zoom-pan-pinch": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"scripts": {
"start": "echo 'Loading.... This will take a few minutes.' && npm run tsc && npm-run-all --parallel dev:emulators dev:react tsc:watch",
"start:export": "npm-run-all --parallel dev:emulators:export dev:react tsc:watch",
"dev:react": "react-scripts start",
"dev:emulators": "firebase emulators:start --import=./emulator-data -P testing",
"dev:emulators:export": "firebase emulators:start --import=./emulator-data --export-on-exit -P testing",
"tsc": "npm-run-all --parallel tsc: tsc:functions",
"tsc:": "tsc --project ./",
"tsc:functions": "tsc --project ./functions",
"tsc:watch": "npm-run-all --parallel tsc:watch: tsc:watch:functions",
"tsc:watch:": "tsc --watch --project ./",
"tsc:watch:functions": "tsc --watch --project ./functions",
"build": "react-scripts build",
"test": "firebase emulators:exec --import=./emulator-data -P testing \"react-scripts test --passWithNoTests\"",
"test:noemulators": "react-scripts test",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"deploy": "firebase deploy -P app"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/jest": "^29.4.0",
"@types/node": "^16.18.12",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase-tools": "^11.22.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"run-script-os": "^1.1.6",
"typescript": "^4.9.5"
}
}