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
30
31
32
33
34
35
|
{
"name": "githermit",
"version": "1.0.0",
"license": "MIT",
"author": "HampusMat",
"private": true,
"scripts": {
"postinstall": "patch-package",
"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\"",
"doc": "yarn typedoc",
"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",
"patch-package": "^6.4.7",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.5",
"typedoc-plugin-pages": "^1.1.0",
"typedoc-theme-slick-dark": "^1.0.4",
"typescript": "^4.3.5"
}
}
|