-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "shouldideploy",
"description": "Should I Deploy today?",
"author": "Alexis Sagrbossa",
"license": "WTFPL",
"version": "1.0.1",
"repository": "https://github.com/baires/shouldideploy/",
"scripts": {
"precommit": "NODE_ENV=production lint-staged",
"dev": "next -p 3001",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "next lint --dir pages --dir component --dir helpers --dir tests",
"format": "prettier-eslint --write $PWD/'**/*.js'"
},
"dependencies": {
"@babel/eslint-parser": "^7.25.1",
"@vercel/og": "^1.0.0",
"date-fns": "^4.1.0",
"next": "^14.2.10",
"prettier-eslint-cli": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "22.9.0",
"@types/react": "18.3.5",
"babel-eslint": "^10.1.0",
"eslint": "8.57.0",
"eslint-config-next": "^15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint"
}
},
"engines": {
"node": "18.x"
}
}