-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "chatforge",
"version": "0.18.8",
"private": true,
"scripts": {
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "npm --prefix backend test",
"test:frontend": "npm --prefix frontend test",
"test:backend:watch": "npm --prefix backend run test:watch",
"test:frontend:watch": "npm --prefix frontend run test:watch",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "npm --prefix backend run lint",
"lint:frontend": "npm --prefix frontend run lint",
"lint:fix": "npm run lint:fix:backend && npm run lint:fix:frontend",
"lint:fix:backend": "npm --prefix backend run lint:fix",
"lint:fix:frontend": "npm --prefix frontend run lint:fix",
"prepare": "husky"
},
"lint-staged": {
"frontend/**/*.{js,jsx,ts,tsx}": [
"npm --prefix frontend run lint:fix"
],
"backend/**/*.js": [
"npm --prefix backend run lint:fix"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
}
}