-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "frontend-monorepo-template",
"version": "1.0.0",
"description": "Monorepo template configured with Yarn 2, Typescript, automated Gihub releases and npm publishing.",
"workspaces": [
"packages/*"
],
"scripts": {
"cm": "cz",
"lintall": "prettier --check ./packages -w",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintIgnore": [
".pnp.js",
".yarn",
"**/dist"
],
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.0.3",
"@types/node": "^12.20.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.14.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-functional": "^3.7.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"semantic-release": "^18.0.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2"
},
"packageManager": "yarn@3.1.1",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NazimHAli/frontend-monorepo-template.git"
},
"license": "MIT",
"author": {
"name": "Nazim Ali",
"url": "https://github.com/NazimHAli"
},
"engines": {
"node": ">=14.0"
},
"keywords": [
"monorepo",
"template",
"typescript",
"workspaces",
"yarn"
],
"bugs": {
"url": "https://github.com/NazimHAli/frontend-monorepo-template/issues"
},
"homepage": "https://github.com/NazimHAli/frontend-monorepo-template#readme",
"lint-staged": {
"*": "yarn lintall"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}