This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.37 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
{
"name": "aeon-quiz-rally-prototype",
"engines": {
"node": ">=18.0.0 <19",
"pnpm": ">=8.0.0 <9"
},
"packageManager": "pnpm@8.6.12",
"volta": {
"node": "18.17.0",
"pnpm": "8.6.12"
},
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write .",
"style": "stylelint ./**/*.{css,scss}",
"style:fix": "stylelint ./**/*.{css,scss} --fix",
"test": "jest --silent=false --verbose false --passWithNoTests",
"asset:optimize": "pnpm optimizt"
},
"dependencies": {
"@t3-oss/env-nextjs": "0.6.0",
"@vercel/analytics": "1.0.1",
"@vercel/og": "0.5.10",
"clsx": "1.2.1",
"framer-motion": "10.15.0",
"jotai": "2.3.0",
"next": "13.4.12",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.45.4",
"react-icons": "4.10.1",
"sharp": "0.32.4",
"tailwind-merge": "1.14.0",
"tailwind-variants": "0.1.13"
},
"devDependencies": {
"@funboxteam/optimizt": "5.0.1",
"@tsconfig/next": "2.0.0",
"@tsconfig/strictest": "2.0.1",
"@types/jest": "29.5.3",
"@types/node": "20.4.8",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.14",
"dotenv": "16.3.1",
"eslint": "8.46.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-tailwindcss": "3.13.0",
"husky": "8.0.3",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"lint-staged": "13.2.3",
"postcss": "8.4.27",
"postcss-import": "15.1.0",
"prettier": "2.8.8",
"stylelint": "15.10.2",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recess-order": "4.3.0",
"stylelint-config-standard-scss": "10.0.0",
"stylelint-prettier": "3.0.0",
"tailwind-scrollbar": "3.0.5",
"tailwindcss": "3.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tw-colors": "1.2.6",
"typescript": "5.1.6"
}
}