-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.08 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "application",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --max-warnings 0 \"**/*.{ts,tsx,js,jsx}\"",
"fix": "eslint --max-warnings 0 --fix \"**/*.{ts,tsx,js,jsx}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.13",
"@chakra-ui/react": "^2.0.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@netlify/functions": "^1.3.0",
"@stripe/react-stripe-js": "^1.16.0",
"@stripe/stripe-js": "^1.46.0",
"@supabase/supabase-js": "^2.1.1",
"axios": "^1.2.1",
"framer-motion": "^6",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-router-dom": "^6",
"react-supabase": "^0.2.0",
"sharp": "^0.31.2",
"stripe": "^11.2.0"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.7.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.2.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/ui": "^0.25",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-chakra-ui": "^0.6.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^41.0.1",
"jsdom": "^19.0.0",
"netlify-cli": "^12.2.9",
"prettier": "^2.6.1",
"supabase": "^1.17.1",
"typescript": "^4.6.3",
"vite": "^3",
"vitest": "^0.25"
}
}