-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"flowbite-react": "^0.11.9",
"node-cron": "^4.2.1",
"tailwind": "^2.3.1"
},
"scripts": {
"postinstall": "flowbite-react patch && flowbite-react register",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:backend": "jest backend/",
"test:frontend": "jest frontend/"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^10.4.21",
"jest": "^29.5.0",
"postcss": "^8.5.6",
"supertest": "^6.3.0",
"tailwindcss": "^4.1.11"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/frontend/src/setupTests.js"
],
"moduleNameMapping": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"collectCoverageFrom": [
"backend/src/**/*.js",
"frontend/src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
}
}