-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "@blockmatic/eosio-hooks-monorepo",
"private": true,
"repository": "[email protected]:blockmatic/eosio-hooks.git",
"author": "Blockmatic.io",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "echo 'no tests'",
"prebuild": "tsc --build --clean",
"build": "tsc --build",
"bootstrap": "lerna bootstrap --use-workspaces",
"release": "env-cmd lerna publish",
"diff": "lerna diff",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\""
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/react": "^18.0.28",
"env-cmd": "^10.1.0",
"eos-transit": "^4.0.7",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "18.2.0",
"typescript": "^4.9.5"
}
}