-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.18 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.18 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
109
110
111
112
113
{
"name": "triterm",
"version": "0.7.1",
"type": "module",
"description": "Modern, secure web-based terminal manager with multi-user support",
"keywords": [
"terminal",
"web-terminal",
"xterm",
"pty",
"ssh",
"shell",
"websocket",
"multi-terminal"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vasandkumar/triterm.git"
},
"bugs": {
"url": "https://github.com/vasandkumar/triterm/issues"
},
"homepage": "https://github.com/vasandkumar/triterm#readme",
"bin": {
"triterm": "./bin/triterm.js"
},
"files": [
"bin/",
"client/",
"server/",
"scripts/",
"monitoring/",
"docker-compose.yml",
"docker-compose.prod.yml",
"docker-compose.monitoring.yml",
"README.md",
"LICENSE"
],
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev --workspace=server",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build --workspace=client",
"build:server": "npm run build --workspace=server",
"start": "npm run start --workspace=server",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "npm run test --workspace=client && npm run test --workspace=server",
"test:client": "npm run test --workspace=client",
"test:server": "npm run test --workspace=server",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:coverage": "npm run test:coverage --workspace=client && npm run test:coverage --workspace=server",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{js,jsx,json,md,css}\"",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^24.8.1",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"concurrently": "^8.2.2",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"happy-dom": "^20.0.5",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"bcryptjs": "^3.0.3",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"cookie-parser": "^1.4.7",
"express-winston": "^4.2.0",
"inquirer": "^12.10.0",
"isomorphic-dompurify": "^2.32.0",
"ora": "^9.0.0",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0"
}
}