forked from hypertool/hypertool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "hypertool",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:hypertool/hypertool.git",
"author": "Hypertool <contact@hypertool.io>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --fix",
"format": "prettier --write .",
"build": "lerna run build",
"test": "lerna run test",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"commitizen": "^4.2.4",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
},
"peerDependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.ts": [
"eslint",
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}