-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 960 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 960 Bytes
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
{
"name": "lucacesarano.com",
"version": "2.0.0",
"private": true,
"dependencies": {
"firebase": "^12.13.0",
"react": "18.2.0",
"react-bootstrap": "2.4.0",
"react-dom": "18.2.0",
"react-scroll": "1.8.7"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@vitejs/plugin-react": "5.0.2",
"happy-dom": "20.5.0",
"husky": "9.0.11",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:e2e": "playwright test",
"test:all": "npm run test && npm run test:e2e",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}