This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "@azimutlabs/config",
"version": "2.0.0-alpha.1",
"private": true,
"description": "Mono-repo for our sharable configs",
"keywords": [
"config",
"config-files",
"alabs"
],
"homepage": "https://github.com/azimutlabs/config#readme",
"bugs": {
"url": "https://github.com/azimutlabs/config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azimutlabs/config.git"
},
"license": "MIT",
"author": "AzimutLabs <npm@alabs.team>",
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "lerna run compile",
"lerna": "lerna publish --conventional-commits --create-release github"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint --no-ignore --cache --max-warnings 0"
},
"eslintConfig": {
"extends": [
"@azimutlabs"
]
},
"eslintIgnore": [
"**/node_modules",
"**/lib"
],
"devDependencies": {
"@azimutlabs/eslint-config": "^0.2.0",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@commitlint/config-lerna-scopes": "^9.0.1",
"eslint": "^7.3.0",
"husky": "^4.2.5",
"lerna": "^3.22.0",
"lint-staged": "^10.2.9",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}