forked from GoogleCloudPlatform/developer-journey-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
{
"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",
"@nextui-org/listbox": "^2.1.25",
"@nextui-org/react": "^2.4.6",
"@nextui-org/system": "^2.2.5",
"@nextui-org/theme": "^2.2.9",
"@reduxjs/toolkit": "^1.9.3",
"@types/twilio": "^3.19.3",
"axios": "^1.7.5",
"cookie": "^0.6.0",
"express": "^4.19.2",
"express-session": "^1.18.0",
"framer-motion": "^11.3.24",
"next": "14.1.1",
"next-app-session": "^1.0.7",
"next-auth": "^4.24.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"twilio": "^5.2.3"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@playwright/test": "^1.31.2",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.4.0",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.14",
"eslint": "8.35.0",
"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"
}
}