aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 3a72ebbb04105ab6370f320a39a31e3a20d82c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"name": "githermit",
	"version": "1.0.0",
	"license": "MIT",
	"author": "HampusMat",
	"private": true,
	"scripts": {
		"postinstall": "lerna bootstrap",
		"clean": "lerna clean && rm -rf node_modules && rm -rf dist",
		"dev": "concurrently -k --kill-others-on-fail \"cd packages/client && yarn serve\" \"cd packages/server && nodemon --exitcrash src/app.js\"",
		"build": "cd packages/client && yarn build",
		"start": "node packages/server/src/app.js"
	},
	"devDependencies": {
		"concurrently": "^6.2.0",
		"lerna": "^4.0.0",
		"nodemon": "^2.0.7"
	}
}