-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "homeserver",
"module": "index.ts",
"private": true,
"type": "module",
"devDependencies": {
"@rocket.chat/eslint-config": "^0.7.0",
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/node": "^22.15.18",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "~8.45.0",
"eslint-config-prettier": "~9.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-anti-trojan-source": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-floating-promise": "~2.0.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^9.1.7",
"prettier": "2.8.8",
"rollup-plugin-dts": "^6.2.3",
"sinon": "^20.0.0",
"tsconfig-paths": "^4.2.0",
"turbo": "~2.8.17",
"typescript": "~5.9.3"
},
"workspaces": ["packages/*"],
"dependencies": {
"dotenv": "^17.3.1",
"memoize": "^10.2.0",
"reflect-metadata": "^0.2.2",
"rollup": "^4.52.4",
"tsyringe": "^4.10.0",
"tweetnacl": "^1.0.3"
},
"packageManager": "bun@1.3.9",
"lint-staged": {},
"scripts": {
"prepare": "husky",
"start": "bun run index.ts",
"test": "bun test",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx --ignore-path .gitignore",
"build": "turbo build",
"test:coverage": "bun test --coverage",
"tsc": "tsc --noEmit",
"bundle:sdk": "bun run build && bun run bundle.ts"
}
}