forked from merkle-open/gondel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"name": "gondel",
"version": "1.2.7",
"private": true,
"description": "Gondel Monorepo",
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap --no-ci --hoist",
"build": "lerna run build",
"clean": "npx -y npm-run-all --npm-path npm clean:*",
"clean:lerna": "lerna clean --yes",
"clean:lock": "npx -y rimraf **/package-lock.json",
"clean:modules": "npx -y rimraf node_modules",
"contributors": "npx all-contributors-cli generate",
"commit": "git-cz",
"postinstall": "npm run bootstrap",
"prepare": "husky install",
"prettier": "prettier --write **/src/**/*.{ts,tsx}",
"posttest": "prettier --list-different **/src/**/*.{ts,tsx}",
"size": "npm run build && size-limit",
"test": "lerna run test",
"test:watch": "lerna run --parallel test:watch",
"release": "lerna publish --conventional-commits --no-commit-hooks",
"update-dependencies": "npm-run-all --parallel update-dependencies:*",
"update-dependencies:packages": "lerna exec -- npm-check-updates -u --deprecated -x html-webpack-plugin,webpack,webpack-cli,css-loader,style-loader,react,react-dom",
"update-dependencies:root": "npm-check-updates -u --deprecated"
},
"license": "MIT",
"lint-staged": {
"**/src/**/*.(ts|tsx)": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@merkle-open/commitlint-conventional-changelog"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"size-limit": [
{
"name": "@gondel/core es5",
"limit": "3.2 KB",
"path": "./packages/core/dist/gondel.es5.min.js"
}
],
"devDependencies": {
"commitizen": "4.3.0",
"@commitlint/cli": "17.4.2",
"@merkle-open/commitlint-conventional-changelog": "1.0.0",
"@merkle-open/prettier-config": "1.0.0",
"@size-limit/preset-small-lib": "8.1.2",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"lerna": "6.4.1",
"lint-staged": "13.1.0",
"npm-check-updates": "16.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"rimraf": "4.1.2",
"size-limit": "8.1.2",
"standard-version": "9.5.0"
}
}