-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 4.12 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
{
"name": "present",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "pnpm run emulators:exec --ui --import test-data 'pnpm run dev:start'",
"dev:update": "pnpm run emulators:exec --import test-data 'pnpm run dev:start' --export-on-exit",
"dev:start": "vite --mode emulator",
"build": "tsc && vite build",
"lint": "xo",
"preview": "vite preview",
"prepare": "husky",
"prepush": "concurrently -n lint,build,test -c bgGreen.bold,bgYellow.bold,bgCyan.bold \"pnpm run lint\" \"pnpm run build:all\" \"pnpm run test:all\"",
"build:functions": "pnpm --dir functions build",
"build:all": "pwa-assets-generator && pnpm run build && pnpm run build:functions",
"deploy": "firebase deploy --only functions:renderForBot,auth,firestore,storage,hosting",
"generate-pwa-assets": "pwa-assets-generator",
"test": "vitest",
"test:all": "pnpm run test:once && pnpm run test:e2e",
"test:once": "pnpm run test --run",
"test:ui": "pnpm run test --ui",
"coverage": "pnpm run test:once --coverage",
"emulators": "firebase emulators:start --project demo-test --only auth,firestore,storage",
"emulators:exec": "firebase emulators:exec --project demo-test --only auth,firestore,storage",
"coverage:report": "nyc report --temp-dir ./coverage/tmp --reporter=text --reporter=lcov --reporter=text-summary --exclude-after-remap false",
"test:e2e": "pnpm run emulators:exec --import test-data 'pnpm run test:e2e:start'",
"test:e2e:coverage": "rm -Rf ./coverage && COVERAGE=1 pnpm run emulators:exec --import test-data 'pnpm run test:e2e:start' && pnpm run coverage:report",
"test:e2e:ui": "pnpm run emulators:exec --import test-data 'pnpm run test:e2e:start --ui'",
"test:e2e:snapshots": "pnpm run emulators:exec --import test-data 'pnpm run test:e2e:start --update-snapshots'",
"test:e2e:start": "FIRESTORE_EMULATOR_HOST=\"127.0.0.1:8081\" playwright test"
},
"dependencies": {
"@unocss/reset": "^0.58.5",
"clsx": "^2.1.0",
"firebase": "^10.8.0",
"pdfjs-dist": "3.6.172",
"react": "^18.2.0",
"react-canvas-confetti": "^2.0.5",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-markdown": "^9.0.1",
"react-pdf": "^7.0.1",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.22.0",
"react-swipeable": "^7.0.1",
"remark-gfm": "^4.0.0",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@iconify-json/fluent-emoji-flat": "^1.1.16",
"@iconify-json/line-md": "^1.1.36",
"@iconify-json/tabler": "^1.1.105",
"@playwright/test": "^1.41.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/nanoid-dictionary": "^4.2.3",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@unocss/preset-icons": "^0.58.5",
"@unocss/preset-typography": "^0.58.5",
"@unocss/preset-uno": "^0.58.5",
"@unocss/preset-web-fonts": "^0.58.5",
"@unocss/transformer-directives": "^0.58.5",
"@unocss/transformer-variant-group": "^0.58.5",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"firebase-admin": "^12.0.0",
"firebase-tools": "^13.2.1",
"husky": "^9.0.10",
"jsdom": "^24.0.0",
"nanoid": "^5.0.5",
"nanoid-dictionary": "^4.3.0",
"nyc": "^15.1.0",
"typescript": "^5.3.3",
"unocss": "^0.58.5",
"v8-to-istanbul": "^9.2.0",
"vite": "^5.1.1",
"vite-plugin-pwa": "^0.18.1",
"vitest": "^1.2.2",
"workbox-window": "^7.0.0",
"xo": "^0.57.0"
},
"packageManager": "[email protected]+sha256.245fe901f8e7fa8782d7f17d32b6a83995e2ae03984cb5b62b8949bfdc27c7b5",
"pnpm": {
"overrides": {
"sharp": "0.33.2"
}
}
}