-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
63
64
65
66
67
68
69
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@portabletext/react": "^1.0.6",
"@sanity/image-url": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"cross-fetch": "^3.1.5",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"next": "latest",
"next-auth": "4.1.2",
"next-sanity": "^0.5.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hot-toast": "^2.2.0",
"react-timeago": "^7.1.0",
"react-twitter-embed": "^4.0.4",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@types/react-timeago": "^4.1.3",
"autoprefixer": "^10.4.7",
"eslint": "^7.14.0",
"husky": "4.3.8",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-mock-fetch": "^2.0.5",
"lint-staged": "^11.0.1",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"ts-jest": "^26.5.6",
"typescript": "4.7.2"
},
"husky": {
"hooks": {
"pre-push": "yarn run test",
"pre-commit": "yarn run typecheck && lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
]
}
}