-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "library",
"description": "🥷 Nerdy Ninja's library 📜",
"private": true,
"license": "MIT",
"homepage": "https://github.com/latipun7/library#readme",
"repository": {
"type": "git",
"url": "https://github.com/latipun7/library.git"
},
"author": {
"name": "Latif Sulistyo",
"email": "latifsulistyo.me@gmail.com"
},
"type": "module",
"engines": {
"node": ">=14.8.0"
},
"packageManager": "yarn@3.1.1",
"workspaces": [
"configs/*"
],
"scripts": {
"cm": "cz",
"lint": "eslint --ext .js,.cjs,.mjs,.jsx,.ts,.tsx .",
"format": "prettier --check .",
"test": "yarn workspaces foreach -vpt --jobs 7 run test",
"dev": "yarn workspaces foreach -vpit run dev",
"build": "yarn workspaces foreach -vpt --jobs 7 run build",
"release": "yarn workspaces foreach -vt --no-private run semantic-release",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/cz-commitlint": "^15.0.0",
"@types/semantic-release": "^17.2.3",
"commitizen": "^4.2.4",
"eslint": "^8.4.1",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"semantic-release-monorepo": "^7.0.5",
"typescript": "^4.5.4"
},
"eslintConfig": {
"extends": "@latipun7"
},
"lint-staged": {
"**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"commitlint": {
"extends": [
"@latipun7/commitlintrc"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"extends": [
"semantic-release-monorepo",
"@latipun7/releaserc/monorepo"
]
}
}