-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "the_reading_room",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"reset": "node -r dotenv/config backend/database/resetScript.js",
"server": "nodemon -r dotenv/config backend/server.js",
"test": "vitest",
"test:e2e": "playwright test --ui",
"jest": "jest --watch"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"framer-motion": "^10.16.14",
"lighthouse": "^11.4.0",
"next": "^14.0.4",
"pg": "^8.11.3",
"react": "^18",
"react-confetti": "^6.1.0",
"react-dom": "^18",
"react-icons": "^4.12.0",
"supertest": "^6.3.3",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.39.0"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.2",
"vitest": "^1.0.1"
}
}