-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "shouldideploy",
"description": "Should I Deploy today?",
"author": "Alexis Sagrbossa",
"license": "WTFPL",
"version": "2.0.1",
"repository": "https://github.com/baires/shouldideploy/",
"scripts": {
"precommit": "NODE_ENV=production lint-staged",
"dev": "next -p 3000",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint pages component helpers tests --fix",
"format": "prettier-eslint --write $PWD/'**/*.js'"
},
"dependencies": {
"@vercel/og": "^1.0.0",
"next": "^16.1.5",
"prettier-eslint-cli": "^8.0.1",
"react": "^19.0.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "25.3.0",
"@types/react": "19.2.2",
"babel-eslint": "^10.1.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.5",
"jest": "^30.2.0",
"lint-staged": "^16.2.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "5.9.2",
"typescript-eslint": "^8.56.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint"
}
},
"engines": {
"node": "22.x"
}
}