-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "be-live-coaching",
"version": "1.0.0",
"description": "```sh npm run dev ```",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev --prefix frontend\" \"npm run dev --prefix studio\"",
"check-all": "biome check --write . && cd frontend && npm run typecheck && cd ../studio && npm run typecheck",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:format": "biome check --write",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,css}": [
"biome check --write --no-errors-on-unmatched"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pashatishinin/be-live-coaching.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/Pashatishinin/be-live-coaching/issues"
},
"homepage": "https://github.com/Pashatishinin/be-live-coaching#readme",
"devDependencies": {
"@biomejs/biome": "2.3.14",
"concurrently": "^9.2.1",
"husky": "^9.1.7"
},
"dependencies": {
"sass": "^1.97.3"
}
}