aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 87dd2a13f9aaacb17f32a155f991c88c552039c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	"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",
		"eslint": "^7.28.0",
		"eslint-config-standard": "^16.0.3",
		"eslint-plugin-import": "^2.23.4",
		"eslint-plugin-promise": "^5.1.0",
		"eslint-plugin-standard": "^5.0.0"
	}
}