-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
69 lines (69 loc) · 1.87 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--openssl-legacy-provider' next dev",
"build": "NODE_OPTIONS='--openssl-legacy-provider' next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@hookform/resolvers": "3.0.0",
"@tanstack/react-query": "4.28.0",
"@tanstack/react-query-devtools": "4.28.0",
"axios": "1.3.4",
"date-fns": "2.29.3",
"jsonwebtoken": "9.0.0",
"lodash": "4.17.21",
"next": "11.1.4",
"nookies": "2.5.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.43.8",
"react-toastify": "8.2.0",
"yup": "0.32.11"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.9",
"@testing-library/react": "12.1.5",
"@types/jest": "29.5.0",
"@types/node": "18.15.10",
"@types/react": "17.0.20",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"autoprefixer": "10.4.14",
"babel-jest": "29.5.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.32.2",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"tailwindcss": "3.2.7",
"typescript": "5.0.2"
}
}