-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.88 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.88 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
{
"name": "TTTGate",
"version": "1.0.10",
"description": "",
"main": "package.js",
"bin": {
"app": "build/src/app.js"
},
"pkg": {
"scripts": "build/**/*.js",
"targets": [
"node18-linux-arm64",
"node18-win-arm64",
"node18-win-x64",
"node18-linux-x64",
"node18-alpine-x64"
],
"outputPath": "dist/bin/"
},
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"build": "tsc -b",
"pkg": "pkg . --no-bytecode --public-packages \"*\" --public",
"dist": "node deploy.js",
"start": "node bin/src/sserver.js",
"server": "tsnd --respawn src/app.ts server -dev ",
"client": "tsnd --respawn src/app.ts client -dev "
},
"jest": {
"testMatch": [
"<rootDir>/test/**/*.test.(js|ts)"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^18.14.0",
"@types/pidusage": "^2.0.2",
"@types/rimraf": "^4.0.5",
"fs-extra": "^11.1.1",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6",
"vite": "^4.4.11"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.14.197",
"@types/node-forge": "^1.3.4",
"@types/winston": "^2.4.4",
"@types/yaml": "^1.9.7",
"bcryptjs": "^2.4.3",
"crypto-js": "^4.1.1",
"find-process": "^1.4.7",
"lodash": "^4.17.21",
"node-forge": "^1.3.1",
"pidusage": "^3.0.2",
"yaml": "^2.3.1"
}
}