-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.57 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "nextjs-rsc",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"seed": "rm -rf media && cross-env PAYLOAD_SEED=true PAYLOAD_DROP_DATABASE=true PAYLOAD_CONFIG_PATH=app/payload/payload.config.ts ts-node src/server.ts",
"build:payload": "cross-env PAYLOAD_CONFIG_PATH=app/payload/payload.config.ts payload build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write --no-error-on-unmatched-pattern \"src/**/*.{ts,tsx,js}\" *.{ts,tsx,js}",
"commit": "cz",
"test": "echo \"No tests specified\" && exit 0",
"prepare": "husky",
"payload": "cross-env PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts payload"
},
"dependencies": {
"@ant-design/plots": "^2.2.8",
"@payloadcms/bundler-webpack": "^1.0.7",
"@payloadcms/db-mongodb": "^1.7.3",
"@payloadcms/next-payload": "^0.1.11",
"@payloadcms/richtext-lexical": "^0.11.3",
"@payloadcms/richtext-slate": "^1.5.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@shadcn/ui": "^0.0.4",
"@tanstack/react-query": "^5.52.2",
"@tanstack/react-table": "^8.20.5",
"axios": "^1.7.4",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.4",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-gradient": "^0.6.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"embla-carousel-autoplay": "^8.3.0",
"embla-carousel-react": "^8.3.0",
"express": "^4.21.0",
"formik": "^2.4.6",
"framer-motion": "^11.3.31",
"isomorphic-ws": "^5.0.0",
"lottie-react": "^2.4.0",
"lucide-react": "^0.429.0",
"mongoose": "^8.7.0",
"next": "13.4.2",
"next-auth": "^4.22.1",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.14",
"payload": "^2.30.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-spinners": "^0.14.1",
"react-toastify": "^10.0.5",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"use-axios": "^1.0.0",
"use-error": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "20.1.3",
"@types/nodemailer": "^6.4.16",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/react-toastify": "^4.1.0",
"@types/tailwindcss": "^3.1.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"autoprefixer": "10.4.14",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "8.4.23",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "3.3.2",
"ts-node": "^10.9.2",
"typescript": "5.0.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"winston": "^3.14.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}