-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.11 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@badrap/bar-of-progress": "0.1.2",
"@heroicons/react": "1.0.3",
"date-fns": "2.23.0",
"next": "latest",
"react": "17.0.2",
"react-date-range": "1.3.0",
"react-dom": "17.0.2",
"tailwind-scrollbar-hide": "1.0.3"
},
"devDependencies": {
"autoprefixer": "10.2.6",
"eslint-config-next": "11.1.0",
"husky": "7.0.1",
"lint-staged": "11.1.2",
"next-seo": "4.26.0",
"postcss": "8.3.5",
"prettier": "2.3.2",
"standard": "16.0.3",
"tailwindcss": "2.2.4"
},
"eslintConfig": {
"globals": {
"fetch": false
},
"extends": [
"./node_modules/standard/eslintrc.json",
"eslint:recommended",
"next"
],
"rules": {
"space-before-function-paren": "off",
"comma-dangle": "off",
"no-console": "warn"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}