Fiddling with package.json

This commit is contained in:
2018-10-27 15:44:27 +11:00
parent fa4a4d611d
commit 53da280ccb
6 changed files with 41 additions and 5 deletions

View File

@@ -15,6 +15,7 @@
"discord.js": "^11.4.2", "discord.js": "^11.4.2",
"dotenv": "^6.0.0", "dotenv": "^6.0.0",
"forever": "^0.15.3", "forever": "^0.15.3",
"node-cron": "^1.2.1" "node-cron": "^1.2.1",
"sync-request": "^6.0.0"
} }
} }

View File

@@ -15,6 +15,7 @@
"discord.js": "^11.4.2", "discord.js": "^11.4.2",
"dotenv": "^6.0.0", "dotenv": "^6.0.0",
"forever": "^0.15.3", "forever": "^0.15.3",
"node-cron": "^1.2.1" "node-cron": "^1.2.1",
"sync-request": "^6.0.0"
} }
} }

View File

@@ -15,6 +15,7 @@
"discord.js": "^11.4.2", "discord.js": "^11.4.2",
"dotenv": "^6.0.0", "dotenv": "^6.0.0",
"forever": "^0.15.3", "forever": "^0.15.3",
"node-cron": "^1.2.1" "node-cron": "^1.2.1",
"sync-request": "^6.0.0"
} }
} }

View File

@@ -15,6 +15,7 @@
"discord.js": "^11.4.2", "discord.js": "^11.4.2",
"dotenv": "^6.0.0", "dotenv": "^6.0.0",
"forever": "^0.15.3", "forever": "^0.15.3",
"node-cron": "^1.2.1" "node-cron": "^1.2.1",
"sync-request": "^6.0.0"
} }
} }

View File

@@ -15,6 +15,7 @@
"discord.js": "^11.4.2", "discord.js": "^11.4.2",
"dotenv": "^6.0.0", "dotenv": "^6.0.0",
"forever": "^0.15.3", "forever": "^0.15.3",
"node-cron": "^1.2.1" "node-cron": "^1.2.1",
"sync-request": "^6.0.0"
} }
} }

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "sanctum",
"version": "1.0.0",
"description": "",
"main": "",
"dependencies": {
"concurrently": "^4.0.1",
"node": "^10.12.0",
"npm": "^6.4.1",
"discord.js": "^11.4.2",
"dotenv": "^6.0.0",
"forever": "^0.15.3",
"node-cron": "^1.2.1",
"sync-request": "^6.0.0"
},
"devDependencies": {},
"scripts": {
"startadam": "cd ADAM && npm start",
"startkamala": "cd ADAM_Kamala && npm start",
"startcptmon": "cd ADAM_CptMon && npm start",
"startdairo": "cd ADAM_Dairo && npm start",
"startlibrarian": "cd Librarian && npm start",
"stopadam": "cd ADAM && npm stop",
"stopkamala": "cd ADAM_Kamala && npm stop",
"stopcptmon": "cd ADAM_CptMon && npm stop",
"stopdairo": "cd ADAM_Dairo && npm stop",
"stoplibrarian": "cd Librarian && npm stop",
"startall": "concurrently \"npm run startadam\" \"npm run startkamala\" \"npm run startcptmon\" \"npm run startdairo\" \"npm run startlibrarian\"",
"stopall": "concurrently \"npm run stopadam\" \"npm run stopkamala\" \"npm run stopcptmon\" \"npm run stopdairo\" \"npm run stoplibrarian\""
}
}