-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.8 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
57
58
59
{
"name": "jexpe-desktop",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "next dev -p 1420",
"build": "next build && next export -o dist",
"tauri": "tauri",
"prepare": "husky install",
"format": "prettier --write ./src/**/*.{js,jsx,ts,tsx}",
"lint": "next lint --max-warnings=0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --max-warnings=0"
]
},
"dependencies": {
"@hello-pangea/dnd": "^16.2.0",
"@tauri-apps/api": "^1.2.0",
"ahooks": "^3.7.4",
"antd": "^5.1.4",
"cuid": "^2.1.8",
"jotai": "^1.13.0",
"lodash": "^4.17.21",
"next": "^13.1.1",
"phosphor-react": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"xterm": "^5.1.0",
"xterm-addon-canvas": "^0.3.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-image": "^0.3.1",
"xterm-addon-ligatures": "^0.6.0",
"xterm-addon-unicode11": "^0.5.0",
"xterm-addon-web-links": "^0.8.0",
"xterm-addon-webgl": "^0.14.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.2",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
}
}