-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 892 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 892 Bytes
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
{
"name": "sidebar",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"homepage": "/sidebar/ui/",
"dependencies": {
"@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@sbbw/api": "^0.0.6",
"framer-motion": "^5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^1.0.7",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"vite": "^2.7.2",
"vite-plugin-cross-origin-isolation": "^0.1.6"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown .",
"git add"
]
}
}