-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.33 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.33 KB
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
{
"name": "invoice-management",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy:functions": "cd functions && npm install && cd .. && firebase deploy --only functions",
"deploy:rules": "firebase deploy --only firestore:rules",
"test": "vitest",
"test:e2e": "vitest run",
"test:e2e:watch": "vitest watch",
"test:e2e:ui": "vitest --ui",
"test:e2e:headless": "cross-env HEADLESS=true vitest run",
"test:e2e:debug": "cross-env HEADLESS=false SLOWMO=100 DEVTOOLS=true vitest run",
"test:e2e:landing": "vitest run tests/e2e/specs/landing.test.js",
"test:e2e:login": "vitest run tests/e2e/specs/login.test.js",
"test:e2e:signup": "vitest run tests/e2e/specs/signup.test.js",
"test:e2e:ci": "cross-env HEADLESS=true vitest run --reporter=default --reporter=json --outputFile=test-results.json"
},
"jest": {
"preset": "jest-puppeteer",
"testMatch": [
"**/tests/e2e/**/*.test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/e2e/setup.js"
],
"testTimeout": 30000,
"testEnvironment": "./tests/e2e/puppeteerEnvironment.js",
"transform": {},
"extensionsToTreatAsEsm": [
".js"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
}
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@mui/material-nextjs": "^9.0.0",
"@mui/x-date-pickers": "^7.23.4",
"axios": "^1.7.9",
"date-fns": "^2.30.0",
"firebase": "^11.0.2",
"next": "^15.5.15",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^7.0.2",
"recharts": "^2.15.0",
"sweetalert2": "^11.23.0"
},
"devDependencies": {
"@types/puppeteer": "^5.4.7",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@vitest/ui": "^3.2.4",
"cross-env": "^10.0.0",
"happy-dom": "^18.0.1",
"puppeteer": "^24.22.0",
"vitest": "^3.2.4"
}
}