-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.82 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
{
"name": "testable-firebase-sample-chat",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:test": "yarn build --mode test",
"preview": "vite preview",
"deploy": "yarn build && firebase deploy --except functions",
"deploy:rules": "firebase deploy --only firestore:rules,storage",
"test": "vitest run --dir test",
"test:e2e": "yarn cypress run",
"emulators:start": "firebase emulators:start --only hosting,auth,firestore,storage",
"emulators:test": "firebase emulators:exec --only firestore,storage 'yarn test'",
"emulators:e2e": "yarn build:test && firebase emulators:exec --only hosting,auth,firestore,storage 'yarn test:e2e'"
},
"dependencies": {
"date-fns": "^2.28.0",
"firebase": "^9.9.0",
"lodash-es": "^4.17.21",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-firebase-hooks": "^5.0.3"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.3.0",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-react": "^1.3.0",
"cypress": "^10.6.0",
"cypress-firebase": "^2.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"firebase-admin": "^11.0.1",
"fishery": "^2.2.2",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-plugin-windicss": "^1.8.6",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.18.0",
"windicss": "^3.5.6"
}
}