-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.63 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": "coursemetrics",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"full-dev": "concurrently \"next dev\" \"docker compose up --build\"",
"stop": "docker compose down",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky",
"ai": "node --loader ts-node/esm utils/ai.ts"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.10.3",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@google/generative-ai": "^0.21.0",
"@nextui-org/react": "^2.4.6",
"@types/react-select": "^5.0.0",
"basic-auth": "^2.0.1",
"framer-motion": "^11.3.31",
"glob": "^11.0.0",
"mongoose": "^8.6.1",
"next": "^14.2.13",
"next-auth": "^4.24.7",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"redis": "^4.7.0",
"rimraf": "^6.0.1",
"sequelize": "^6.37.3",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^9.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"husky": "^9.1.6",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"types": "^0.1.1",
"typescript": "^5"
}
}