-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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": "hooks-utils-monorepo",
"description": "Hooks utilities monorepo",
"author": "Blockmatic.io",
"version": "2.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "echo 'no tests'",
"prebuild": "tsc --build --clean",
"build": "tsc --build",
"commit": "dev-scripts commit",
"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"
]
},
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint": "8.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"react": "^18.2.0"
},
"repository": "[email protected]:blockmatic/hooks-utils.git",
"license": "MIT",
"dependencies": {}
}