-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "space-out-cat",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"test": "vitest",
"test:e2e": "npx playwright test",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"dotenv": "^16.3.1",
"eslint": "8.39.0",
"eslint-config-next": "^14.0.3",
"firebase": "^10.7.0",
"next": "^14.0.3",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@playwright/test": "^1.40.1",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.1",
"@types/node": "20.10.2",
"@types/react": "18.2.40",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^2.0.5",
"autoprefixer": "^10.4.16",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"vitest": "^2.0.5"
}
,
"engines": {
"node": ">=22.0.0"
}
}