-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.82 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
51
52
53
54
55
56
{
"name": "zli_blog",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx}'",
"prettier:fmt": "prettier --write 'src/**/*.{ts,tsx}'",
"eslint:check": "eslint 'src/**/*.{ts,tsx}'",
"eslint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"lint": "npm run prettier:check; npm run eslint:check",
"fmt": "npm run prettier:fmt; npm run eslint:fix"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.5",
"@vanilla-extract/css": "^1.9.2",
"@vanilla-extract/recipes": "^0.3.0",
"@vanilla-extract/sprinkles": "^1.5.1",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.39.5",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.4.3",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"the-new-css-reset": "^1.7.3",
"usehooks-ts": "^2.9.1",
"vite-plugin-svgr": "^2.2.2"
},
"devDependencies": {
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vanilla-extract/vite-plugin": "^3.7.0",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.0",
"typescript": "^4.6.4",
"vite": "^3.2.3"
}
}