-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "sjmcl",
"version": "1.0.0-beta.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"tauri": "tauri",
"lint-staged": "lint-staged",
"prepare": "husky",
"version": "node scripts/version/index.js",
"locale": "node scripts/locale/index.js"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --no-fix --max-warnings=0"
],
"src-tauri/src/**/*.rs": [
"rustfmt --check"
],
"scripts/**/*.js": [
"eslint --no-fix --max-warnings=0"
],
"src/locales/*.json": [
"npm run locale diff en",
"npm run locale diff zh-Hans"
]
},
"dependencies": {
"@chakra-ui/react": ">=2.8.2 <3.0.0",
"@chakra-ui/theme-tools": "^2.2.6",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@tauri-apps/api": "^2.7.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.0",
"@tauri-apps/plugin-deep-link": "^2.4.0",
"@tauri-apps/plugin-dialog": "^2.3.0",
"@tauri-apps/plugin-fs": "^2.4.0",
"@tauri-apps/plugin-http": "^2.5.0",
"@tauri-apps/plugin-log": "^2.6.0",
"@tauri-apps/plugin-opener": "^2.4.0",
"@tauri-apps/plugin-os": "^2.3.0",
"@tauri-apps/plugin-process": "^2.3.0",
"@tauri-apps/plugin-window-state": "^2.3.0",
"i18next": "^24.0.0",
"lodash": "^4.17.23",
"masonic": "^4.0.1",
"micromatch": "^4.0.8",
"next": "15.5.12",
"react": "^18",
"react-dom": "^18",
"react-i18next": "^15.1.1",
"react-icons": "^5.4.0",
"react-markdown": "^10.1.0",
"react-spinners": "^0.14.1",
"react-virtualized": "^9.22.6",
"remark-gfm": "^4.0.1",
"skinview3d": "^3.1.0",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.2",
"@tauri-apps/cli": "^2.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.17.15",
"@types/micromatch": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-virtualized": "^9.22.0",
"@types/string-similarity": "^4.0.2",
"chalk": "^4.1.2",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"typescript": "^5"
},
"overrides": {
"mdast-util-gfm-autolink-literal": "2.0.0"
},
"pnpm": {
"overrides": {
"mdast-util-gfm-autolink-literal": "2.0.0"
}
}
}