-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "scrapbox-converter",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "npm run build:wasm && tsc && vite build",
"build:wasm": "cd ./crates/demo && wasm-pack build --target web -d ../../pkg",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"lint-staged": "^13.0.2",
"prettier": "2.7.1",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.15.1"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"chakra-ui-markdown-renderer": "^4.1.0",
"copy-to-clipboard": "^3.3.1",
"framer-motion": "^6.3.13",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet-async": "^1.3.0",
"react-markdown": "^8.0.3",
"rehype-mathjax": "^4.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}