-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.94 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
{
"name": "configs",
"version": "0.0.0",
"description": "🚀 Basic babel, rollup, webpack, semantic-release, jest, stylelint, eslint, prettier & typescript configs",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"Medly",
"babel",
"eslint",
"rollup",
"semantic-release",
"prettier",
"tsconfig",
"configs"
],
"author": "Mukul Bansal",
"license": "ISC",
"bugs": {
"url": "https://github.com/medly/configs/issues"
},
"homepage": "https://github.com/medly/configs#readme",
"scripts": {
"prepare": "husky install",
"postinstall": "yarn link:packages && yarn init:commitizen",
"init:commitizen": "commitizen init cz-lerna-changelog --yarn --dev --exact --force",
"clean": "lerna clean --yes && rimraf node_modules",
"lint": "eslint 'packages/**/*.{js, ts}'",
"commit": "git-cz",
"link:packages": "lerna link && lerna exec -- yarn link",
"release": "cross-env HUSKY=0 lerna publish"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-lerna-scopes"
]
},
"prettier": "@medly/prettier-config",
"eslintConfig": {
"extends": "@medly"
},
"repository": {
"type": "git",
"url": "git://github.com/medly/medly-configs.git"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@medly/eslint-config": "^0.1.0",
"@medly/prettier-config": "^0.1.0",
"@medly/typescript-config": "^0.1.0",
"commitizen": "4.0.3",
"cross-env": "^7.0.3",
"cz-lerna-changelog": "^2.0.2",
"husky": "^6.0.0",
"jest": "27.0.4",
"lerna": "^3.20.2",
"rimraf": "^3.0.1"
}
}