-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.55 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write \"{components,content,docs,pages,styles,utils}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"format:check": "prettier --check \"{components,content,docs,pages,styles,utils}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"lint": "eslint --fix '{components,pages,utils}/**/*.{js,jsx,ts,tsx}'",
"lint:check": "eslint '{components,pages,utils}/**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install",
"pre-commit": "npm run format && git add -A ."
},
"dependencies": {
"@tailwindcss/typography": "^0.5.1",
"csv-parse": "^4.16.3",
"framer-motion": "^4.1.17",
"heroicons": "^1.0.4",
"next": "^11.1.2",
"next-pwa": "^5.3.1",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-toastify": "^8.0.3"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-react-require": "^3.1.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tailwind": "^0.2.1",
"husky": "^7.0.2",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"prettier": "^2.4.1",
"tailwindcss": "^3.0.18"
}
}