-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 KB
/
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
37
{
"name": "boring-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"boringbits": "^3.3.8",
"detect-node": "^2.0.4",
"mocha": "^5.2.0",
"nodemon": "^1.18.6"
},
"devDependencies": {},
"scripts": {
"test": "node node_modules/mocha/bin/_mocha --require @boringbits/register $(find ./src -name '*-test.js')",
"start": "node dist/server/app",
"start-dev": "nodemon --watch ./src/server --exec \"node src/server/app | npx bunyan\"",
"build-node": "npx boring build-node",
"build-client": "npx boring build-client",
"type-check": "npx boring tsc",
"build": "npm run build-node && npm run build-client",
"install-build-start": "npm install && npm run build && npm run up && npm run start-dev",
"up": "npx boring up",
"down": "npx boring down",
"debug": "node --inspect-brk src/server/app",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DynoSRC/boring-boilerplate.git"
},
"author": "Ryan Stevens",
"license": "MIT",
"bugs": {
"url": "https://github.com/DynoSRC/boring-boilerplate/issues"
},
"homepage": "https://github.com/DynoSRC/boring-boilerplate#readme"
}