forked from baires/shouldideploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"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": "eslint . && prettier-eslint --list-different $PWD/'**/*.js'",
"format": "prettier-eslint --write $PWD/'**/*.js'"
},
"dependencies": {
"moment-timezone": "^0.5.31",
"next": "^10.0.1",
"prettier-eslint-cli": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"snyk": "^1.424.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.2.5",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"snyk": true
}