-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"scripts": {
"dev": "next",
"dev-https": "node https.js",
"build": "next build",
"start": "next start",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore ",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"prettify": "prettier --write"
},
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.2",
"babel-preset-next": "^1.4.0",
"dotenv": "^8.2.0",
"formik": "^2.1.5",
"immer": "^7.0.5",
"js-cookie": "^2.2.1",
"next": "^9.4.4",
"next-compose-plugins": "^2.2.0",
"next-cookies": "^2.0.3",
"next-i18next": "^4.5.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.1.21",
"react-query": "^3.13.0",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-react": "7.10.4",
"@babel/register": "7.10.5",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"eslint": "7.4.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-webpack": "0.12.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.3",
"jest-cli": "26.1.0",
"jest-dom": "4.0.0",
"lint-staged": "10.2.11",
"pre-commit": "1.2.2",
"prettier": "2.0.5"
},
"engines": {
"node": ">=10.16.0"
}
}