This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
52 lines (52 loc) · 1.85 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
{
"name": "bh_ps",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node --max_old_space_size=8192 -r ts-node/register index.ts --respawn --transpile-only",
"dev": "npx cross-env NODE_OPTIONS=--max-old-space-size=8192 ts-node-dev index.ts --respawn --transpile-only --watch",
"dev-nodemon": "npx cross-env NODE_OPTIONS=--max-old-space-size=8192 npx concurrently \"npx tsc --watch\" \"npx nodemon -q dist/index.js\"",
"compile": "npx cross-env NODE_OPTIONS=--max-old-space-size=8192 npx tsc",
"gm": "node --max_old_space_size=8192 -r ts-node/register tools/gm_web/index.ts --respawn --transpile-only",
"proxy": "node --max_old_space_size=8192 -r ts-node/register tools/proxy/index.ts --respawn --transpile-only",
"proxy-dev": "npx cross-env NODE_OPTIONS=--max-old-space-size=8192 ts-node-dev tools/proxy/index.ts --respawn --transpile-only --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ts-node": "^10.9.1",
"@typegoose/typegoose": "^11.0.0",
"acfg": "^1.2.3",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dayjs": "^1.11.7",
"express": "^4.18.2",
"mongoose": "^7.0.3",
"protobufjs": "^7.1.2"
},
"devDependencies": {
"@emotion/react": "^11.11.0",
"@mantine/core": "^6.0.10",
"@mantine/hooks": "^6.0.10",
"@mantine/notifications": "^6.0.11",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.17",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/request": "^2.48.8",
"@types/ws": "^8.5.4",
"@vitejs/plugin-react": "^4.0.0",
"axios": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"request": "^2.88.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"vite": "^4.3.5",
"ws": "^8.13.0"
}
}