-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.13 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.13 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
{
"name": "langforge-docs",
"version": "1.0.0",
"description": "The Complete Guide to Building Production-Ready LLM Applications with LangChain",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "npm run build:docs && npm run build:assets",
"build:docs": "node scripts/build-docs.js",
"build:assets": "webpack --mode=production",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js,.md",
"lint:fix": "eslint . --ext .js,.md --fix",
"format": "prettier --write .",
"validate": "npm run lint && npm run test",
"deploy": "npm run build && npm run deploy:production",
"deploy:production": "node scripts/deploy.js",
"serve": "http-server dist -p 8080",
"security:audit": "npm audit",
"security:fix": "npm audit fix"
},
"keywords": [
"langchain",
"llm",
"ai",
"documentation",
"machine-learning",
"artificial-intelligence",
"python",
"typescript",
"production",
"enterprise"
],
"author": "Muhammad Mazhar Saeed (Professor) <professor@langforge.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/0x-Professor/langforge-docs.git"
},
"bugs": {
"url": "https://github.com/0x-Professor/langforge-docs/issues"
},
"homepage": "https://langforge.dev",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fuse.js": "^7.1.0",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"rate-limiter-flexible": "^2.4.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"babel-loader": "^10.0.0",
"eslint": "^8.55.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-security": "^3.0.1",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"browserslist": [
"defaults",
"not ie 11",
"not op_mini all"
]
}