aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 3bf23fe8840e1580b373a8df2df4066cf50ffc0d (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": {
		"clean": "rm -rf node_modules dist packages/*/node_modules packages/*/dist",
		"dev": "concurrently -k --kill-others-on-fail \"cd packages/client && yarn serve\" \"cd packages/server && yarn dev\"",
		"build": "cd packages/client && yarn build && cd ../server && yarn tsc",
		"start": "node packages/server/dist/app.js"
	},
	"workspaces": [
		"packages/*"
	],
	"devDependencies": {
		"concurrently": "^6.2.0"
	}
}