This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
90 lines (90 loc) · 2.65 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"version": "2.8.5",
"description": "tracking.exposed main package",
"license": "AGPL-3.0",
"engines": {
"node": ">= 16.14",
"npm": "use yarn!",
"yarn": ">= 3"
},
"private": true,
"workspaces": [
"docs",
"packages/*",
"platforms/guardoni",
"platforms/ycai/studio",
"platforms/yttrex/*",
"platforms/tktrex/docs",
"platforms/tktrex/extension",
"platforms/tktrex/backend",
"platforms/tktrex/shared",
"platforms/storybook"
],
"packageManager": "[email protected]",
"scripts": {
"commit": "commit",
"clean": "yarn workspaces foreach -v run clean",
"lint": "yarn workspaces foreach -v run lint",
"type-check": "yarn workspaces foreach run tsc --noEmit",
"build": "scripts/build.sh",
"test": "jest",
"docs": "yarn workspace @trex/docs",
"taboule": "yarn workspace @trex/taboule",
"shared": "yarn workspace @trex/shared",
"guardoni": "yarn workspace guardoni",
"tt-automate": "yarn workspace tt-automate",
"tk:docs": "yarn workspace @tktrex/docs",
"tk:shared": "yarn workspace @tktrex/shared",
"tk:backend": "yarn workspace @tktrex/backend",
"tk:ext": "yarn workspace @tktrex/extension",
"yt:shared": "yarn workspace @yttrex/shared",
"yt:backend": "yarn workspace @yttrex/backend",
"yt:ext": "yarn workspace @yttrex/extension",
"ycai": "yarn workspace @trex/ycai",
"storybook": "yarn workspace @trex/storybook",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"release-it-after-bump": "scripts/release-it-after-bump.sh",
"tsc-diagnostics": "scripts/tsc-diagnostics.sh",
"pm2": "pm2"
},
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt-cli": "^17.1.2",
"@release-it-plugins/workspaces": "^3.2.0",
"@release-it/bumper": "^4.0.0",
"@release-it/conventional-changelog": "^5.1.1",
"@types/node": "^16.11.68",
"@types/prettier": "^2.6.3",
"eslint": "^8.25.0",
"eslint-plugin-n": "^15.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"prettier": "^2.7.1",
"release-it": "^15.5.0",
"ts-jest": "^27.1.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"zx": "^6.2.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext .tsx --ext .ts --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"resolutions": {
"@types/node": ">=16",
"@types/react": "^17"
},
"dependencies": {
"@react-theming/storybook-addon": "^1.1.7",
"pm2": "^5.2.2"
}
}