forked from Raiper34/spooty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"version": "2.2.2",
"name": "spooty",
"workspaces": [
"src/backend",
"src/frontend",
"src/desktop"
],
"scripts": {
"start:be": "npm run start:dev -w backend",
"start:fe": "npm run start -w frontend",
"build:be": "npm run build -w backend",
"build:fe": "npm run build -w frontend",
"build": "npm run build:be && npm run build:fe",
"build:desktop": "npm run build && npm run dist -w ./src/desktop",
"start:desktop": "npm run build && npm run start -w ./src/desktop",
"deps:download": "node scripts/download-deps.mjs",
"gen:fe": "npm run gen -w frontend",
"gen:be": "npm run gen -w backend",
"start": "npm run start:prod -w backend",
"clean": "rimraf dist",
"changelog": "auto-changelog -p",
"release": "release-it",
"commit": "cz",
"check:lib": "npm-check-updates -w backend -f ytdlp-nodejs -u"
},
"devDependencies": {
"@release-it/bumper": "^7.0.1",
"auto-changelog": "^2.5.0",
"commitizen": "^4.3.1",
"copy-files-from-to": "^3.2.2",
"cz-conventional-changelog": "^3.3.0",
"npm-check-updates": "^17.1.15",
"release-it": "^18.1.2",
"release-it-docker-plugin": "^2.0.0",
"rimraf": "^6.0.1",
"typescript": "5.6.3"
},
"dependencies": {
"sqlite3": "^5.1.7"
}
}