forked from zParik/NotBigBrother
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.9 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.9 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
{
"name": "notbigbrother",
"version": "1.0.0",
"description": "---",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts --ext ts",
"postinstall": "node scripts/download-models.js",
"download-models": "node scripts/download-models.js",
"bundle": "browserify public/js/demo.js -o public/js/demo.bundle.js",
"bundle:verify": "browserify public/js/verify.js -o public/js/verify.bundle.js",
"bundle:all": "npm run bundle && npm run bundle:verify",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"testEnvironment": "node",
"roots": ["<rootDir>/src"],
"testMatch": ["**/__tests__/**/*.test.ts"],
"moduleFileExtensions": ["ts", "js", "json"],
"collectCoverageFrom": ["src/**/*.ts", "!src/global.d.ts", "!src/types/**"],
"transform": {
"^.+\\.tsx?$": ["ts-jest", { "tsconfig": "tsconfig.test.json" }]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zonde246/NotBigBrother.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Zonde246/NotBigBrother/issues"
},
"homepage": "https://github.com/Zonde246/NotBigBrother#readme",
"dependencies": {
"blind-signatures": "^1.0.7",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"multer": "^2.1.0",
"node-rsa": "^1.1.1",
"onnxruntime-node": "^1.24.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^25.3.3",
"@types/supertest": "^7.2.0",
"browserify": "^17.0.1",
"nodemon": "^3.1.10",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}