-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.95 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.95 KB
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
{
"name": "capstone-project-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"copy:dev:env": "env-cmd -f ./env/development.env node ./scripts/write-env.mjs",
"copy:staging:env": "env-cmd -f ./env/staging.env node ./scripts/write-env.mjs",
"copy:prod:env": "env-cmd -f ./env/production.env node ./scripts/write-env.mjs",
"start:dev": "yarn copy:dev:env && next dev",
"start:staging": "yarn copy:staging:env && next dev",
"start:prod": "yarn copy:prod:env && next dev",
"build:dev": "yarn copy:dev:env && next build",
"build:staging": "yarn copy:staging:env && next build",
"build:prod": "yarn copy:prod:env && next build",
"gen:api:dev": "env-cmd -f ./env/development.env node ./scripts/api-generator-script.mjs",
"preview:dev": "yarn build:dev && next start",
"preview:staging": "yarn build:staging && next start",
"preview:prod": "yarn build:prod && next start",
"lint": "next lint"
},
"dependencies": {
"@ant-design/cssinjs": "^1.20.0",
"@ant-design/icons": "^5.3.7",
"@ant-design/nextjs-registry": "^1.0.0",
"antd": "^5.17.3",
"async": "^3.2.5",
"child_process": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"env-cmd": "^10.1.0",
"formik": "^2.4.6",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"next-auth": "^5.0.0-beta.20",
"next-nprogress-bar": "^2.3.12",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.4",
"socket.io-client": "^4.7.5",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"openapi-typescript": "^6.7.6",
"postcss": "^8",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}