File size: 579 Bytes
d8cfa7c | 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": "teledrive",
"version": "2.5.5",
"repository": "git@github.com:mgilangjanuar/teledrive.git",
"author": "M Gilang Januar <mgilangjanuar@teledriveapp.com>",
"license": "MIT",
"private": true,
"engines": {
"node": "18.16.0"
},
"scripts": {
"web": "yarn workspace web",
"server": "yarn workspace api",
"api": "yarn workspace api",
"build": "yarn workspaces run build",
"start": "cd api && node dist/index.js",
"docs": "USE_SSH=true cd docs && yarn deploy"
},
"workspaces": [
"web",
"api"
],
"dependencies": {}
}
|