-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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 -p $PORT",
"heroku-postbuild": "npm run build",
"lint": "eslint './pages/**/*.{js,ts,tsx}' --quiet --fix",
"postinstall": "husky install",
"test": "jest"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.2",
"next": "^10.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lint-staged": ">=10",
"postcss": "^8.2.7",
"prettier": "^2.2.1",
"simple-git-hooks": ">=2.0.3",
"tailwindcss": "^2.0.3",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,ts,tsx}": "eslint --cache --fix"
}
}