-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 2.27 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": "gondel",
"version": "1.2.7",
"private": true,
"description": "Gondel Monorepo",
"main": "index.js",
"workspaces": [
"examples/*",
"packages/core",
"packages/plugins/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "npx -y npm-run-all --npm-path npm clean:*",
"clean:lock": "npx -y rimraf --glob **/package-lock.json",
"clean:modules": "npm exec --workspaces -- npx -y rimraf node_modules && npx -y rimraf node_modules",
"contributors": "npx all-contributors-cli generate",
"commit": "git-cz",
"prepare": "husky",
"prettier": "prettier --write **/src/**/*.{ts,tsx}",
"posttest": "prettier --list-different **/src/**/*.{ts,tsx}",
"size": "npm run build && size-limit",
"test": "npm run test --workspaces --if-present",
"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,typescript,react,react-dom,@types/react,@types/react-dom,webpack-dev-server",
"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.1",
"@commitlint/cli": "18.6.1",
"@merkle-open/commitlint-conventional-changelog": "1.0.8",
"@merkle-open/prettier-config": "1.2.1",
"@size-limit/preset-small-lib": "11.1.6",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.6",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"npm-check-updates": "17.1.4",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"rimraf": "5.0.10",
"size-limit": "11.1.6",
"standard-version": "9.5.0"
}
}