-
-
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.12 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.12 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": "zeroday",
"version": "1.0.0",
"description": "ZeroDay is a web app that tracks the number of days since the last incident, accident, or failure, helping teams maintain safety and encourage responsible habits.",
"keywords": [],
"author": {
"name": "Jesús Iván Godínez Martínez",
"email": "ivano.godinez@gmail.com"
},
"contributors": [
{
"name": "Juan Pablo Jiménez Covarrubias",
"email": "pablo.jimenezdev@gmail.com"
},
{
"name": "Cristian C. Giraldo",
"email": "cc.giraldo11@gmail.com"
}
],
"scripts": {
"build": "next build",
"commit": "commit",
"dev": "next dev",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint-staged": "lint-staged",
"prepare": "bun .husky/install.ts",
"prettier": "prettier ./src --write",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"start": "next start",
"test": "bun test",
"test:cov": "bun test --coverage"
},
"engineStrict": true,
"engines": {
"bun": "1.x"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@js-temporal/polyfill": "^0.5.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@prisma/client": "^7.6.0",
"next": "^16.2.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.6.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/prompt-cli": "^20.5.0",
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.2.2",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^10.2.0",
"eslint-config-next": "^16.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}