-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.86 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "frontendx",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"presentations/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=dicty-frontpage --filter=stock-center --filter=publication --filter=genomepage --parallel",
"dev:mock": "turbo run dev:mock --filter dicty-frontpage",
"e2e": "turbo run e2e",
"coverage-report": "turbo run coverage-report",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"coverage": "turbo run coverage --continue",
"lint": "turbo run lint",
"lint:out": "turbo run lint:out",
"lint:merge": "tsx merge_eslint.ts eslint",
"clean": "rm -rf node_modules && yarn",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"doc:build": "typedoc --tsconfig typedoc-tsconfig.json",
"doc:watch": "typedoc --tsconfig typedoc-tsconfig.json --watch",
"create:package": "plop package",
"create:app": "plop app",
"generate:schema": "turbo run generate"
},
"devDependencies": {
"@types/node": "^20.12.10",
"browserlist": "latest",
"eslint-config-custom": "*",
"plop": "3.x",
"prettier": "3.*",
"tsx": "latest",
"turbo": "^1.10.12",
"typedoc": "0.23.x",
"typedoc-plugin-coverage": "2.x",
"typedoc-plugin-mermaid": "1.x",
"typedoc-plugin-resolve-crossmodule-references": "0.x"
},
"resolutions": {
"@types/react": "17.x",
"@types/react-dom": "17.x"
},
"engines": {
"node": ">=18.0.0"
},
"eslintConfig": {
"root": true,
"extends": [
"custom"
]
},
"prettier": {
"semi": false,
"trailingComma": "all",
"bracketSameLine": true
},
"packageManager": "[email protected]",
"browserslist": [
"> 0.2%",
"last 5 versions",
"not dead",
"not op_mini all"
],
"msw": {
"workerDirectory": "public"
}
}