-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "toadoa",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf dist node_modules/.vite",
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx .",
"prettier:check": "prettier --check './**/*.{js,jsx,ts,tsx,cjs}'",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@supabase/supabase-js": "^1.30.0",
"dayjs": "^1.10.7",
"react": "^17.0.2",
"react-content-loader": "^6.1.0",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.26.1",
"react-icons": "^4.3.1",
"react-query": "^3.34.14",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.7.2",
"@types/node": "^17.0.16",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-react": "^1.2.0",
"dotenv": "^16.0.0",
"eslint": "8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"pg": "^8.7.3",
"prettier": "^2.5.1",
"sequelize": "^6.16.1",
"sequelize-cli": "^6.4.1",
"typescript": "^4.5.5",
"vite": "^2.8.0",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-html": "^3.0.6"
}
}