-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "vite-project",
"private": false,
"version": "0.0.0",
"homepage": "https://fadhilaf.github.io",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"prepare": "husky install"
},
"dependencies": {
"@react-spring/web": "^9.4.5",
"axios": "^0.27.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.3.0",
"typewriter-effect": "^2.18.2",
"use-local-storage": "^2.3.6",
"vite-plugin-svgr": "^2.1.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.7",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.13",
"prettier": "^2.7.1",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.5"
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown"
},
"prepare": "husky install"
}