-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
{
"name": "designthriving",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node server.mjs",
"build": "next build",
"lint": "next lint",
"format": "npx prettier --write .",
"dump": "mongodump -d kapi -o data_dump",
"restore": "mongorestore data_dump",
"generate-icons": "ts-node ./scripts/generate-icons.ts src/components/icons/Icons.tsx",
"docker:build": "docker build -t kingkapi/kapi-web .",
"docker:push": "docker push kingkapi/kapi-web"
},
"dependencies": {
"@auth/mongodb-adapter": "^1.0.0",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@headlessui/react": "^1.7.15",
"@headlessui/tailwindcss": "^0.1.3",
"@iconify/react": "^4.1.0",
"@next/font": "^13.4.7",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/query-core": "^4.29.25",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"eslint-config-next": "^13.4.7",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"jotai": "^2.2.2",
"jotai-molecules": "^1.1.1",
"jotai-tanstack-query": "^0.7.1",
"mongodb": "^5.6.0",
"mongoose": "^7.3.1",
"next": "^14.0.4",
"next-auth": "^4.19.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"rgb-hex": "^4.0.1",
"rgb2hex": "^0.2.5",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"swiper": "^9.1.0",
"tailwind-merge": "^2.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/http-proxy-middleware": "^1.0.0",
"@types/node": "^20.2.5",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.33.0",
"nodemon": "^2.0.22",
"postcss": "^8.4.23",
"postcss-each": "^1.1.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}