-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "yasinates.com",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "eslint src pages --fix",
"format": "prettier src pages --write"
},
"dependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"axios": "^0.21.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"husky": "^7.0.1",
"md5": "^2.2.1",
"next": "11.1.3",
"next-images": "^1.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "16.13.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "~7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"prettier": "^2.0.5",
"sass": "^1.26.8"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}