-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "weather-forecast.metalevel.tech",
"version": "1.0.1",
"private": true,
"scripts": {
"check-branch-name": "chmod 755 githooks/check_branch_name.sh && bash githooks/check_branch_name.sh",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"pre-commit": "npm run check-branch-name && lint-staged",
"push-u": "git push origin $(git branch | sed 's/^..//') -u"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.css": "stylelint --fix"
},
"dependencies": {
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.0.2",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint": "8.47.0",
"eslint-config-next": "13.4.16",
"lucide-react": "^0.268.0",
"next": "13.4.16",
"postcss": "8.4.28",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive": "^9.0.2",
"recharts": "^2.8.0",
"sass": "^1.66.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"csso-cli": "^4.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"remark": "^14.0.3",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"vercel": "^32.1.0"
}
}