-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 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
{
"name": "hivebridge",
"version": "0.1.0",
"description": "HiveBridge backend for collaborative AI development in healthcare.",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.20.4 <19.0.0 || >=20.18.0 <21.0.0 || >=22.12.0 <23.0.0"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec tsx src/index.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --cache --ext .ts",
"lint:fix": "eslint . --cache --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky",
"setup": "nvm install && nvm use"
},
"keywords": [
"collaborative-ai",
"privacy-preserving",
"federated-learning",
"parse-server",
"typescript",
"express",
"eslint",
"jest",
"prettier",
"low-code",
"nodejs",
"web-application"
],
"author": "Yumcoder (Omid)",
"license": "MIT",
"dependencies": {
"dotenv": "^16.5.0",
"dotenv-expand": "^12.0.2",
"express": "5.1.0",
"parse": "^6.1.1",
"parse-server": "8.2.0"
},
"devDependencies": {
"@types/express": "5.0.1",
"@types/jest": "^29.5.11",
"@types/node": "22.15.3",
"@types/parse": "^3.0.9",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"eslint": "9.26.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-prettier": "5.3.1",
"husky": "9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"tsx": "4.19.4",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*.{ts,tsx,js}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,md}": "prettier --write"
}
}