-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "promptops",
"version": "0.1.0",
"private": true,
"scripts": {
"next-dev": "next dev -p 3000",
"mongo-test": "node db/testMongoConnection.js",
"dev": "concurrently \"pnpm run mongo-test\" \"pnpm run next-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"autoprefixer": "10.4.14",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"event-source-polyfill": "^1.0.31",
"express": "^4.21.1",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.8.1",
"next": "^15.1.4",
"next-auth": "^4.24.11",
"papaparse": "^5.5.2",
"postcss": "8.4.23",
"react": "^18.2.0",
"react-chartjs-2": "^5.3.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"react-hot-toast": "^2.5.2",
"react-icons": "5.4.0",
"react-query": "^3.39.3",
"recharts": "^2.15.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwindcss": "3.3.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/event-source-polyfill": "^1.0.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.9.0",
"@types/papaparse": "^5.3.15",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/supertest": "^6.0.3",
"concurrently": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"storybook": "^8.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}