-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
{
"name": "retro-avatar-website",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": "run-p test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"author": "Youking-lib <whistleryz@gmail.com>",
"license": "MIT",
"dependencies": {
"@react-aria/interactions": "^3.14.0",
"@react-aria/radio": "^3.5.0",
"@react-aria/ssr": "^3.5.0",
"@react-aria/tooltip": "^3.4.0",
"@react-aria/utils": "^3.15.0",
"@react-stately/radio": "^3.7.0",
"@react-stately/tooltip": "^3.3.0",
"@supabase/supabase-js": "^2.12.1",
"@vercel/analytics": "^0.1.11",
"canvas": "^2.11.0",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"framer-motion": "^8.5.0",
"lodash": "^3",
"lowdb": "^5.1.0",
"next": "^13.2.4",
"nextra": "2.2.20",
"nextra-theme-docs": "2.2.20",
"pino": "^8.11.0",
"pino-logflare": "^0.3.12",
"pino-pretty": "^10.0.0",
"react": "^18.2.0",
"react-code-blocks": "0.0.9-0",
"react-dom": "^18.2.0",
"retro-avatar": "^0.0.2",
"tailwind-variants": "^0.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"devDependencies": {
"@types/lodash": "^3",
"@types/node": "18.15.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.13",
"babel-eslint": "^8.0.3",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.2.1",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
}
}