-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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": "bot-guyveut",
"version": "1.0.0",
"private": true,
"description": "",
"main": "bot.js",
"scripts": {
"local": "lerna run local --stream",
"lint": "eslint --ignore-path .gitignore .",
"deploy": "lerna run deploy --stream --scope banker && lerna run deploy --stream --scope reports",
"deploy:prod": "lerna run deploy:prod --stream",
"delete:all": "lerna run delete --stream",
"test:watch": "jest --watch",
"test": "jest",
"clean": "find . -name \"node_modules\" -type d -prune | xargs du -chs"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/banker/**",
"**/reports/**"
]
},
"devDependencies": {
"eslint": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}