forked from therealwolf42/hive-witness-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.77 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
{
"name": "@witness-essentials/root",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"add:root": "yarn add -W -D",
"add:cli": "yarn workspace @witness-essentials/cli add",
"add:pricefeed": "yarn workspace @witness-essentials/pricefeed add",
"add:remote": "yarn workspace @witness-essentials/remote add",
"add:watcher": "yarn workspace @witness-essentials/watcher add",
"add:util": "yarn workspace @witness-essentials/package add",
"lint": "eslint --ext .ts,.js,.vue . --ignore-path .gitignore .",
"update": "yarn run update:cli && yarn run update:pricefeed && yarn run update:remote && yarn run update:watcher",
"update:cli": "yarn workspace @witness-essentials/cli add witness-essentials-package@latest",
"update:pricefeed": "yarn workspace @witness-essentials/pricefeed add witness-essentials-package@latest",
"update:remote": "yarn workspace @witness-essentials/remote add witness-essentials-package@latest",
"update:watcher": "yarn workspace @witness-essentials/watcher add witness-essentials-package@latest"
},
"workspaces": {
"packages": [
"essentials/*"
],
"nohoist": [
"*/**",
"__internal__Util"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"yarn lint"
]
},
"devDependencies": {
"@types/node": "^12.12.31",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-node": "^8.8.1",
"ts-node-dev": "^1.1.8",
"typescript": "^3.8.3"
}
}