-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "@snorreeb/sanity-utils-monorepo",
"version": "0.0.1",
"description": "Wrapper project. Dont publish this.",
"author": "Snorre Eskeland Brekke <[email protected]>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/snorrees/sanity-iframe-preview.git"
},
"scripts": {
"lint": "eslint . --ext .js,.ts,.tsx --max-warnings=0",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"clean": "lerna run clean --stream",
"test": "lerna run test --stream",
"publish": "npm run lint && git fetch --tags && lerna publish --conventional-commits",
"version:dry-run": "git fetch --tags && lerna version --no-git-tag-version --no-push",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.0.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "~4.5.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.css": [
"prettier --check"
],
"*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"prettier --check"
]
}
}