-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
57
58
59
60
61
62
63
64
65
{
"name": "take_note",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"deploy": "gh-pages -d dist -r https://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@github.com/YuXingLiang214/react-note.git -b gh-pages",
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --fix --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"preview": "vite preview",
"ts": "tsc --noEmit"
},
"dependencies": {
"@ant-design/icons": "^5.3.6",
"@types/lodash-es": "^4.17.12",
"antd": "^5.16.2",
"axios": "^1.6.8",
"highlight.js": "^11.9.0",
"immer": "^10.0.3",
"js-base64": "^3.7.7",
"markdown-it": "^14.0.0",
"markdown-it-task-lists": "^2.1.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.12.7",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"parent-module": "^3.1.0",
"prettier": "^3.1.1",
"resolve-from": "^5.0.0",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^5.0.8"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"npm run lint",
"prettier --write"
]
},
"homepage": "https://yuxingliang214.github.io/react-note/"
}