-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.73 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
83
84
85
86
87
88
{
"name": "2024",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"generate": "graphql-codegen",
"prestart": "npm run generate",
"predev": "npm run generate",
"typecheck": "tsc",
"lint": "eslint ./src --cache",
"lint:fix": "eslint ./src --cache --fix",
"prettier": "prettier ./src --cache --check",
"prettier:fix": "prettier ./src --cache --write",
"prepare": "husky install"
},
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.36.3",
"@tsparticles/engine": "^3.2.2",
"@tsparticles/react": "^3.0.0",
"atropos": "^2.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"easymde": "^2.18.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"lucide-react": "^0.446.0",
"next": "14.1.0",
"next-sanity": "^9.0.14",
"next-sanity-image": "^6.1.1",
"posthog-js": "^1.116.6",
"react": "^18",
"react-dom": "^18",
"sanity": "^3.36.3",
"sanity-plugin-markdown": "^4.1.2",
"styled-components": "^6.1.8",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tsparticles": "^3.2.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "^4.2.5",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@next/eslint-plugin-next": "^14.1.0",
"@posthog/plugin-scaffold": "^1.6.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.14.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5.4.5"
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}