-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
58
{
"name": "fun-car-factory",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run && lint-staged",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx}": "eslint"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@studio-freight/lenis": "^1.0.26",
"firebase": "^10.4.0",
"graphql": "^16.8.1",
"gsap": "^3.12.2",
"js-cookie": "^3.0.5",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-button": "^0.7.2",
"react-icons": "^4.11.0",
"react-loading-skeleton": "^3.3.1",
"react-router-dom": "^6.16.0",
"react-toastify": "^9.1.3",
"sweetalert2": "^11.7.32"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"happy-dom": "^12.9.0",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"msw": "^1.3.2",
"react-test-renderer": "^18.2.0",
"vite": "^4.4.11",
"vitest": "^0.34.6"
}
}