forked from msgbyte/tailchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.54 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
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
{
"name": "tailchat",
"version": "1.11.6",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently --kill-others --handle-input npm:dev:server npm:dev:web",
"dev:web": "cd client/web && pnpm dev",
"dev:server": "cd server && pnpm dev",
"dev:admin": "cd server/admin && pnpm dev",
"start:service": "cd server && pnpm start:service",
"start:admin": "cd server/admin && pnpm start",
"build": "concurrently npm:build:web npm:build:server npm:build:admin && cp -r client/web/dist/* server/dist/public",
"build:web": "cd client/web && pnpm build",
"build:server": "cd server && pnpm build && echo \"Install server side plugin:\" && pnpm run plugin:install com.msgbyte.tasks com.msgbyte.linkmeta com.msgbyte.github com.msgbyte.simplenotify com.msgbyte.topic com.msgbyte.agora com.msgbyte.wxpusher com.msgbyte.welcome com.msgbyte.iam com.msgbyte.discover com.msgbyte.livekit && mkdir -p ./dist/public && cp -r ./public/plugins ./dist/public && cp ./public/registry-be.json ./dist/public",
"build:admin": "cd server/admin && pnpm build",
"check:type": "concurrently npm:check:type:client npm:check:type:server",
"check:type:client": "cd client/web && tsc --noEmit",
"check:type:server": "cd server && tsc --noEmit",
"publish:all": "pnpm -r publish --registry=https://registry.npmjs.com/",
"website": "cd website && pnpm dev",
"preinstall": "npx only-allow pnpm",
"lint:fix": "eslint --fix './**/*.{ts,tsx}'",
"prepare": "husky install",
"release": "release-it",
"release:patch": "release-it -i patch"
},
"keywords": [],
"author": "moonrailgun <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@release-it/conventional-changelog": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"concurrently": "^7.6.0",
"dayjs": "^1.11.7",
"esbuild": "^0.15.18",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"fs-extra": "^10.1.0",
"gulp-sort": "^2.0.0",
"husky": "^8.0.3",
"i18next-scanner": "^3.3.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"release-it": "^15.6.0",
"typescript": "^4.9.5",
"vinyl-fs": "^3.0.3"
},
"dependencies": {
"crc": "^3.8.0",
"lodash": "^4.17.21"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"acorn",
"ts-jest",
"@typegoose/typegoose",
"moleculer"
]
},
"overrides": {
"redux": "4.2.1",
"@babel/runtime": "7.21.0",
"@types/react": "18.0.20",
"@types/node": "18.11.9",
"ts-node": "10.9.1",
"webpack": "5.75.0",
"react-router@^6.0.0": "6.11.0",
"react-router-dom@^6.0.0": "6.11.0",
"@typegoose/typegoose": "9.3.1",
"@tanstack/query-async-storage-persister": "4.32.6",
"@tanstack/react-query": "4.33.0",
"@tanstack/react-query-persist-client": "4.33.0",
"@tanstack/react-query-devtools": "4.33.0",
"typescript": "4.9.4",
"got": "11.8.3",
"zustand": "4.3.6",
"immer": "9.0.21",
"mongodb": "4.2.1",
"mongoose@~6.0.14": "6.1.1",
"mongoose@^6.0.0": "6.1.1",
"mongoose-findorcreate": "3.0.0"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}