-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "seo-enchance",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx|jsx)\"",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx|jsx|html|css)\"",
"format": "yarn run prettier -- --write",
"check-format": "yarn run prettier -- --list-different",
"check-types": "tsc",
"validate": "npm-run-all --parallel check-types check-format lint build"
},
"dependencies": {
"@chakra-ui/react": "^1.0.4",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"framer-motion": "^3.1.1",
"next": "10.0.4",
"next-images": "^1.6.2",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-eslint": "^10.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}