-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 974 Bytes
/
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
{
"name": "charm-chat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node version.cjs && tsc && vite build && echo '/* /index.html 200' | cat > dist/_redirects",
"preview": "vite preview"
},
"dependencies": {
"@supabase/supabase-js": "^2.1.1",
"autoprefixer": "^10.4.13",
"lodash.debounce": "^4.0.8",
"lottie-react": "^2.3.1",
"postcss": "^8.4.19",
"preact": "^10.11.2",
"react-router-dom": "^6.4.3",
"tailwindcss": "^3.2.4",
"ts-md5": "^1.3.1",
"uuid": "^9.0.0",
"zustand": "^4.1.4"
},
"devDependencies": {
"@preact/preset-vite": "^2.4.0",
"@types/lodash.debounce": "^4.0.7",
"@types/uuid": "^8.3.4",
"prettier": "^2.8.0",
"typescript": "^4.6.4",
"vite": "^3.2.3"
},
"prettier": {
"bracketSpacing": true,
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"useTabs": false
}
}