This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.53 KB
/
package.json
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
36
37
38
39
40
41
42
{
"name": "@unifed/monorepo",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"checks": "yarn lint && yarn build && yarn test",
"lint": "yarn workspaces foreach -vp -j 8 run lint",
"build": "yarn workspaces foreach -vp --topological-dev -j 8 run build",
"test": "yarn workspaces foreach -vp -j 8 run test",
"fix": "yarn workspaces foreach -vp -j 8 run fix",
"dev-docs": "./scripts/generate-docs",
"container:start": "make -C scripts -f entry.mk start",
"container:stop": "make -C scripts -f entry.mk stop",
"container:restart": "make -C scripts -f entry.mk restart",
"container:reset": "make -C scripts -f entry.mk reset",
"container:logs": "make -C scripts -f entry.mk logs",
"container:devdb": "make -C scripts -f entry.mk devdb",
"container:train": "make -C scripts -f entry.mk train",
"container:train:build": "make -C scripts -f entry.mk train-build",
"clean": "yarn workspaces foreach -vp run clean && rm -rf coverage && rm -rf packages/**/node_modules"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"@types/eslint": "^7.2.7",
"@types/prettier": "^2.2.3",
"eslint": "^7.31.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"typedoc": "^0.20.34",
"typescript": "^4.2.3"
},
"resolutions": {
"sass-loader": "^10.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3"
}
}