-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.2 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
{
"name": "airy-maleo-plugins",
"description": "Plugins for @airy/maleo",
"author": "Airy Engineering <direct@airyrooms.com>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/airyrooms/maleo-plugins#README",
"repository": {
"type": "git",
"url": "git+https://github.com/airyrooms/maleo-plugins.git"
},
"bugs": {
"url": "https://github.com/airyrooms/maleo-plugins/issues"
},
"keywords": [
"airy",
"maleo",
"plugins",
"@airy/maleo",
"javascript",
"node",
"universal"
],
"workspaces": [
"packages/*"
],
"typeScriptVersion": "3.1.1",
"engines": {
"node": ">=10.11.0",
"npm": ">=6.4.1",
"yarn": ">=1.10.1"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"commit": "git-cz",
"build": "lerna --stream --parallel --ignore @airy/maleo-gulp-plugin run build",
"watch": "lerna --stream --parallel --no-bail run watch",
"clean:lib": "find packages -name lib -exec rm -rf {} +",
"clean": "yarn lerna clean -y && rm -rf @types node_modules && yarn clean:lib",
"pretty:fix": "prettier --config-precedence file-override --config .prettierrc --write 'packages/**/**+(.jsx|.tsx|.js|.ts)'",
"publish:prepublish": "lerna run prepublish",
"publish:version-stable": "lerna version --message \"chore(release): publish stable [skip ci]\" --yes",
"publish:stable": "lerna publish from-package --no-git-reset --yes"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@airy/maleo": "latest",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@types/node": "^10.12.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/tapable": "^1.0.4",
"@types/webpack": "^4.4.14",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"pretty-quick": "^1.10.0"
}
}