-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.96 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
{
"name": "abax-org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -n NEXT,TS -c magenta,cyan \"next dev -p 3002\" \"yarn ts --watch\"",
"dev:ts": "yarn dev & yarn ts:watch",
"ts": "tsc --noEmit --incremental --preserveWatchOutput --pretty",
"ts:watch": "yarn ts --watch",
"build": "next build",
"export": "next export",
"serve:static": "npx serve out",
"start": "next start",
"lint": "yarn lint:format && yarn lint:fix",
"lint:fix": "eslint . --ext .js,.ts,tsx --fix",
"lint:format": "pretty-quick --loglevel warn --write \"./**/*.{js,ts,tsx,md,json}\" ",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@react-spring/web": "^9.7.2",
"@types/node": "20.3.1",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"lucide-react": "^0.242.0",
"mobile-detect": "^1.4.5",
"next": "13.4.6",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"tailwindcss-border-gradient-radius": "^3.0.1",
"typescript": "5.1.3"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"concurrently": "^7.6.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"pretty-quick": "^3.1.3",
"tailwind-merge": "^1.13.2"
},
"packageManager": "yarn@3.6.0"
}