forked from CodeverDotDev/codever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1020 Bytes
/
package.json
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
{
"name": "bookmarks.dev",
"version": "2.4.0",
"description": "Bookmarks.dev (frontend & backend)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"frontend": "cd frontend && npm start",
"install-frontend": "cd frontend && npm install",
"backend": "cd backend && npm run debug",
"install-backend": "cd backend && npm install",
"start": "npm-run-all --parallel frontend backend",
"install": "npm-run-all install-frontend install-backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BookmarksDev/bookmarks.dev.git"
},
"keywords": [
"bookmarks-manager",
"nodejs",
"angular"
],
"author": "Adrian Matei",
"license": "MIT",
"bugs": {
"url": "https://github.com/BookmarksDev/bookmarks.dev/issues"
},
"homepage": "https://github.com/BookmarksDev/bookmarks.dev#readme",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"fs-extra": "^9.0.1",
"git-describe": "^4.0.4"
}
}