forked from de-dot-fi/defiyield-self-integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "monorepo",
"version": "1.9.0",
"packageManager": "[email protected]",
"private": true,
"prettier": "./packages/prettier-config",
"lint-staged": {
"*.json": "yarn ci:format",
"*.ts": [
"yarn ci:format",
"yarn lint"
]
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"workshop": "yarn workspace @defiyield/workshop",
"sandbox": "yarn workspace @defiyield/sandbox",
"postinstall": "husky install",
"format": "prettier --config \"./packages/prettier-config/index.js\" --write \"**/*.(json|ts)\"",
"format:check": "prettier --config \"./packages/prettier-config/index.js\" --check \"**/*.(json|ts)\"",
"ci:format": "prettier --config \"./packages/prettier-config/index.js\" --write",
"lint": "eslint --fix"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"commitlint": "^17.4.2",
"eslint": "^8.33.0",
"husky": "^8.0.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"typescript": "^4.8.4"
},
"dependencies": {
"rc-motion": "^2.6.2",
"rc-trigger": "^5.3.3"
}
}