-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.69 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
{
"name": "fine-tune-forge",
"description": "FineTuneForge is JSONL generator designed to elevate the fine-tuninode_modules/.bin/ng process of cutting-edge language models like Google's PaLM 2 and OpenAI's GPT-3.5",
"version": "1.0.0-beta.3",
"license": "MIT",
"author": {
"name": "Reyhan Kamil",
"email": "[email protected]"
},
"engines": {
"node": "20 || 22"
},
"keywords": [
"JSONL",
"Fine-tuning",
"Artificial Intelligence",
"Dataset Generation",
"Text Processing",
"Google",
"Google Cloud Platform",
"VertexAI",
"OpenAI",
"PaLM 2",
"GPT-3.5"
],
"private": true,
"scripts": {
"ng": "node_modules/.bin/ng",
"start": "node_modules/.bin/ng serve",
"watch": "node_modules/.bin/ng build --watch --configuration development",
"test": "node_modules/.bin/ng test",
"dev": "rm -rf dist && node_modules/.bin/ng run fine-tune-forge:serve-ssr",
"serve": "PORT=4000 node dist/fine-tune-forge/server/main.js",
"serve:https": "PORT=4000 PROTOCOL_SERVER=https node dist/fine-tune-forge/server/main.js",
"build": "rm -rf dist && node_modules/.bin/ng build && ng run fine-tune-forge:server && sleep 0.001 && rm -rf dist/fine-tune-forge/**/3rdpartylicenses.txt"
},
"dependencies": {
"@angular/animations": "^18.2.13",
"@angular/common": "^18.2.13",
"@angular/compiler": "^18.2.13",
"@angular/core": "^18.2.13",
"@angular/forms": "^18.2.13",
"@angular/platform-browser": "^18.2.13",
"@angular/platform-browser-dynamic": "^18.2.13",
"@angular/platform-server": "^18.2.13",
"@angular/router": "^18.2.13",
"@angular/ssr": "^18.2.12",
"@google-cloud/documentai": "^8.8.0",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-useragent": "^1.0.15",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"ng-zorro-antd": "^18.2.1",
"request-ip": "^3.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.12",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.13",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/csurf": "^1.11.5",
"@types/express": "^4.17.21",
"@types/express-useragent": "^1.0.5",
"@types/jasmine": "~4.3.0",
"@types/lodash": "^4.17.5",
"@types/multer": "^1.4.11",
"@types/node": "^18.19.34",
"@types/request-ip": "^0.0.41",
"browser-sync": "^3.0.0",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.5.4"
}
}