-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.1 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
{
"name": "website",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/natainditama/website",
"bugs": {
"url": "https://github.com/natainditama/website/issues",
"email": "natainditama.dev@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/natainditama/website"
},
"license": "MIT",
"author": {
"name": "natainditama",
"email": "natainditama.dev@gmail.com",
"url": "https://github.com/natainditama/"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js,jsx,tsx,css)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|jsx|tsx|css)\" --write",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx,css}": [
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.4.4",
"@next/bundle-analyzer": "^14.0.4",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.10.7",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"autoprefixer": "^10.4.16",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.2",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"next-transpile-modules": "^10.0.1",
"postcss": "^8.4.33",
"prettier": "3.1.1",
"prettier-plugin-sort-json": "3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
}
}