forked from baires/shouldideploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"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",
"build": "next build",
"start": "next start",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"test": "snyk test",
"lint": "next lint --dir pages --dir component --dir helpers",
"format": "prettier-eslint --write $PWD/'**/*.js'",
"test": "jest"
},
"dependencies": {
"@vercel/analytics": "^0.1.11",
"next": "^13.3.0",
"prettier-eslint-cli": "^7.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"snyk": "^1.1140.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "18.15.11",
"@types/react": "18.0.34",
"babel-eslint": "^10.1.0",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint"
}
},
"engines": {
"node": "16.x"
},
"snyk": true
}