-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 758 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
29
30
{
"name": "harmony-server",
"version": "0.1.0",
"description": "To-Do Application",
"main": "server.js",
"scripts": {
"server": "nodemon server.js",
"webapp": "npm run dev --prefix webapp",
"dev": "concurrently \"npm run server\" \"npm run webapp\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/WarrenReader/harmony.git"
},
"author": "Warren Reader",
"license": "ISC",
"bugs": {
"url": "https://github.com/WarrenReader/harmony/issues"
},
"homepage": "https://github.com/WarrenReader/harmony#readme",
"dependencies": {
"concurrently": "^4.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.4"
},
"devDependencies": {
"file-loader": "^3.0.1",
"nodemon": "^1.18.10"
}
}