-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.69 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
{
"name": "ui-kit",
"private": true,
"scripts": {
"setup": "npm i && lerna bootstrap",
"start": "lerna run --parallel start",
"heroku-postbuild": "cd packages/atomic && npm i && npm run build",
"build": "lerna run build",
"test": "lerna run test",
"test:watch": "lerna run --parallel test:watch --no-prefix",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"pr:report": "node ./scripts/reports/pr-report.js",
"report:bundle-size:time-series": "node ./scripts/reports/bundle-size/time-series.js",
"cypress:test": "lerna run cypress:test",
"commit": "git-cz",
"bump:version:pre": "node ./scripts/deploy/bump-version.js",
"bump:version:graduate": "node ./scripts/deploy/bump-version.js --graduate",
"version": "lerna version --conventional-commits",
"version:pre": "lerna version --conventional-commits --conventional-prerelease",
"version:graduate": "lerna version --conventional-commits --conventional-graduate",
"npm:publish": "lerna run --no-bail npm:publish",
"npm:publish:alpha": "npm run npm:publish -- -- -- --tag alpha",
"npm:publish:beta": "npm run npm:publish -- -- -- --tag beta",
"notify:docs": "node ./scripts/notify-docs/published-headless.js",
"doc:generate": "lerna run doc:generate"
},
"devDependencies": {
"@actions/github": "^4.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^10.0.0",
"@commitlint/lint": "^9.1.1",
"@octokit/rest": "^18.0.15",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"concurrently": "^5.3.0",
"cross-fetch": "^3.0.6",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.11.1",
"gts": "^3.1.0",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"commit-msg": "node ./hooks/commit-msg.js",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": [
"bueno",
"headless",
"atomic",
"quantic"
]
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.ts?(x)": [
"npm run lint:fix",
"git add"
],
"**/*.{scss,css,html}": [
"prettier --print-width 120 --write",
"git add"
]
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {}
}