-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 783 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 783 Bytes
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
{
"name": "finoracle",
"version": "0.1.5",
"description": "FinOracle - Your Personal Finance Oracle",
"private": true,
"scripts": {
"dev": "npm --prefix frontend run dev",
"build": "npm --prefix frontend run build",
"test": "npm --prefix frontend run test",
"lint": "npm --prefix frontend run lint",
"lint:fix": "npm --prefix frontend run lint:fix",
"install:frontend": "npm --prefix frontend install",
"setup:agents": "pip install -r PowerSpawn/requirements.txt",
"prepare": "husky"
},
"lint-staged": {
"frontend/**/*.{ts,tsx}": [
"npm --prefix frontend run lint:staged --",
"npm --prefix frontend exec -- vitest related --run"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
}
}