aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 6f17e44e1edf0bfd184728d5c7a4c438dd941828 (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
25
26
27
28
29
{
	"name": "githermit",
	"version": "1.0.0",
	"license": "MIT",
	"author": "HampusMat",
	"private": true,
	"scripts": {
		"clean": "rm -rf node_modules git 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",
		"test": "jest --verbose"
	},
	"workspaces": [
		"packages/*"
	],
	"devDependencies": {
		"@types/fs-extra": "^9.0.12",
		"@types/jest": "^26.0.23",
		"client": "^1.0.0",
		"concurrently": "^6.2.0",
		"dotenv": "^10.0.0",
		"fs-extra": "^10.0.0",
		"jest": "^27.0.6",
		"server": "^1.0.0",
		"ts-jest": "^27.0.3",
		"typescript": "^4.3.5"
	}
}