-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "next-starter",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"axios": "^0.24.0",
"clsx": "^1.1.1",
"framer-motion": "^5.5.5",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.1.1",
"react-icons": "^4.3.1",
"swr": "^1.1.2",
"tailwind-merge": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/node": "17.0.6",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"autoprefixer": "^10.4.1",
"babel-jest": "^27.4.6",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-sort-class-names": "^3.0.1",
"tailwindcss": "^3.0.8",
"typescript": "4.5.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix .",
"prettier --write ."
]
}
}