-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.21 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
{
"name": "impulso-previne",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build ",
"start": "next start",
"biome:check": "biome check --write",
"biome:summary": "biome check --reporter=summary",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format --write",
"commitlint": "commitlint --edit",
"commit": "cz",
"postinstall": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@hotjar/browser": "^1.0.9",
"@impulsogov/design-system": "^1.0.336",
"@mui/material": "^6.1.0",
"@mui/x-data-grid": "^7.17.0",
"@prisma/client": "5.22.0",
"@sentry/nextjs": "^8",
"@vercel/otel": "^1.10.1",
"axios": "^1.7.7",
"cpf-cnpj-validator": "^1.0.3",
"dompurify": "^3.1.6",
"form-data": "^4.0.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"jspdf": "^2.5.2",
"jspdf-autotable": "^3.8.3",
"mixpanel-browser": "^2.55.1",
"next": "15.1.6",
"next-auth": "^4.24.10",
"next-transpile-modules": "^10.0.1",
"papaparse": "^5.4.1",
"prisma": "^5.22.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-gtm-module": "^2.0.11",
"validator": "^13.12.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/mixpanel-browser": "^2.50.0",
"@types/next-auth": "^3.15.0",
"@types/node": "^20",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/react-gtm-module": "^2.0.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}