-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "dev-journey-app",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretest:e2e": "playwright install",
"test:e2e": "playwright test",
"test": "jest --verbose --detectOpenHandles",
"test:watch": "jest --verbose --detectOpenHandles --watch"
},
"dependencies": {
"@google-cloud/firestore": "^7.6.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@reduxjs/toolkit": "^1.9.3",
"next": "14.2.10",
"next-auth": "^4.24.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@playwright/test": "^1.31.2",
"@types/jest": "^29.4.0",
"@types/node": "18.19.58",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.14",
"eslint": "8.57.1",
"eslint-config-next": "13.2.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
}
}