forked from chaitin/xtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.1 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "x-tools",
"version": "1.0.0",
"private": false,
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc --project ./ && next lint && prettier --write",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@excalidraw/excalidraw": "^0.17.2",
"@homegrown/word-counter": "^0.1.7",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.155",
"@mui/material": "^5.13.0",
"@tanstack/react-query": "^4.29.7",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"ace-builds": "^1.32.2",
"ahooks": "^3.7.8",
"apache-crypt": "^1.2.6",
"apache-md5": "^1.1.8",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"big-integer": "^1.6.52",
"change-case": "^5.3.0",
"compressorjs": "^1.2.1",
"crypto-js": "^4.2.0",
"eslint-config-next": "^14.0.4",
"html-entities": "^2.4.0",
"ip": "^1.1.8",
"js-yaml": "^4.1.0",
"json-2-csv": "^5.0.1",
"next": "^14.0.4",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^10.0.1",
"node-forge": "^1.3.1",
"prettier": "^3.1.1",
"qs": "^6.11.2",
"rc-table": "^7.36.0",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-copy-to-clipboard": "^5.1.0",
"react-diff-viewer-continued": "^3.3.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
"react-image-edit": "^0.2.5",
"react-markdown": "^8.0.7",
"react-material-ui-carousel": "^3.4.2",
"react-router-dom": "^6.20.1",
"react-syntax-highlighter": "^15.5.0",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.10",
"remark-gfm": "^3.0.1",
"remark-toc": "^8.0.1",
"shrinkpng": "^1.2.0-beta.1",
"slick-carousel": "^1.8.1",
"sql-formatter": "^15.0.2",
"sql.js": "^1.9.0",
"swiper": "^8.4.7",
"typescript": "5.0.4",
"xlsx": "^0.18.5",
"xmorse": "^1.0.0",
"yarn": "^1.22.21"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/big-integer": "^0.0.31",
"@types/crypto-js": "^4.2.0",
"@types/ip": "^1.1.3",
"@types/node": "20.1.5",
"@types/node-forge": "^1.3.10",
"@types/qs": "^6.9.7",
"@types/react": "^18.2.42",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "18.2.4",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"gofmt.js": "^0.0.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"uuid": "^9.0.1"
}
}