generated from nirnejak/nextjs-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nirnejak-website",
"description": "Portfolio website of Jitendra Nirnejak",
"version": "1.0.0",
"author": "Jitendra Nirnejak <[email protected]>",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-tooltip": "^1.1.8",
"@vercel/speed-insights": "^1.2.0",
"akar-icons": "^1.9.31",
"cmdk": "^1.0.4",
"dotenv": "^16.4.7",
"motion": "^12.4.7",
"next": "^15.1.7",
"next-pwa": "^5.6.0",
"next-view-transitions": "^0.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"use-sound": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@tailwindcss/postcss": "^4.0.7",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22.13.4",
"@types/react": "^19.0.10",
"eslint": "^9.20.1",
"eslint-config-love": "^118.0.0",
"eslint-config-next": "^15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"volta": {
"node": "22.11.0"
},
"keywords": [
"nextjs",
"react",
"typescript",
"eslint",
"prettier",
"precommit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nirnejak/nirnejak-website"
},
"homepage": "https://nirnejak.com",
"bugs": {
"url": "https://github.com/nirnejak/nirnejak-website/issues"
},
"trustedDependencies": [
"@vercel/speed-insights"
]
}