-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 844 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 844 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
27
28
{
"name": "notehub",
"version": "1.0.0",
"description": "NoteHub is a real-time collaborative note-taking web app ",
"main": "index.js",
"scripts": {
"server": "npm run watch --prefix server",
"frontend": "npm run serve --prefix frontend",
"watch": "npm-run-all --parallel server frontend",
"test": "npm run test --prefix server && npm run test --prefix frontend",
"deploy": "npm run build --prefix frontend && npm run start --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Toubat/NoteHub.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Toubat/NoteHub/issues"
},
"homepage": "https://github.com/Toubat/NoteHub#readme",
"dependencies": {
"dotenv": "^10.0.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5"
}
}