-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "promptforge",
"version": "1.0.0",
"description": "A web-based prompt management system that stores LLM prompts as markdown files with SQLite indexing",
"keywords": [
"llm",
"prompts",
"markdown",
"ai",
"claude",
"gpt",
"management",
"search"
],
"homepage": "https://github.com/protocolus/promptforge#readme",
"bugs": {
"url": "https://github.com/protocolus/promptforge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protocolus/promptforge.git"
},
"license": "ISC",
"author": "protocolus@gmail.com",
"scripts": {
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm start",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"init-db": "cd server && npm run init-db",
"test": "cd server && npm test && cd ../client && npm test",
"lint": "cd server && npm run lint && cd ../client && npm run lint",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"concurrently": "^8.2.0",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"server/**/*.js": "eslint --config eslint.config.js --fix",
"client/**/*.{js,jsx}": "eslint --config eslint.config.js --fix"
}
}