aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 0927da79054a68f8d64864dfdf8d05ef27806e49 (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 packages/*/node_modules packages/client/dist",
		"dev": "concurrently -k --kill-others-on-fail \"yarn workspace client serve\" \"yarn workspace server dev\"",
		"build": "yarn workspace client build",
		"start": "yarn workspace server start",
		"test": "jest --verbose"
	},
	"workspaces": [
		"packages/*"
	],
	"devDependencies": {
		"@types/fs-extra": "^9.0.12",
		"@types/jest": "^26.0.23",
		"axios": "^0.21.1",
		"concurrently": "^6.2.0",
		"dotenv": "^10.0.0",
		"eslint": "^7.31.0",
		"fs-extra": "^10.0.0",
		"jest": "^27.0.6",
		"ts-jest": "^27.0.3",
		"typescript": "^4.3.5"
	}
}