-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "starter",
"version": "0.0.0",
"description": "🚀 Start kit for module, app",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"Medly",
"module",
"app",
"typescript",
"react"
],
"author": "Mukul Bansal",
"license": "ISC",
"bugs": {
"url": "https://github.com/medly/starter/issues"
},
"homepage": "https://github.com/medly/starter#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 && rimraf yarn.lock && rimraf node_modules",
"lint": "eslint 'packages/**/*.{js, ts}'",
"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",
"@medly/typescript-config-react": "^0.0.2",
"@types/react": "^17.0.11",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.10",
"commitizen": "4.0.3",
"cross-env": "^7.0.3",
"cz-lerna-changelog": "^2.0.2",
"husky": "^6.0.0",
"jest": "^27.0.3",
"lerna": "^3.20.2",
"react": "^17.0.2",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"rimraf": "^3.0.1"
}
}