-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.54 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.54 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": "locklite",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format:c": "prettier --check .",
"format:w": "prettier --write .",
"test": "jest",
"tests:units": "jest tests/units",
"tests:units:ui": "jest tests/units/projects/ui",
"tests:units:shared": "jest tests/units/projects/shared",
"tests:units:api": "jest tests/units/projects/api",
"test:cov": "jest --coverage",
"prisma:reset": "prisma migrate reset",
"prisma:migrate": "prisma migrate dev --name",
"prisma:generate": "prisma generate",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:push": "prisma db push",
"prisma:seed": "tsx src/projects/api/modules/seed/infra/seed.ts",
"a11y:pa11y": "pa11y-ci --config tests/e2e/pa11y/config.json",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"postinstall": "npm run prisma:generate"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.2.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.12.0",
"@sentry/nextjs": "^10.5.0",
"@vercel/speed-insights": "^1.2.0",
"bcrypt": "^6.0.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"http-status-codes": "^2.3.0",
"next": "15.3.5",
"next-auth": "^4.24.11",
"next-swagger-doc": "0.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"tsyringe": "^4.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.31.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"eslint-config-next": "15.3.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"pa11y-ci": "^4.0.1",
"prettier": "^3.6.2",
"prisma": "^6.12.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5",
"typescript-eslint": "^8.38.0"
}
}