-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 KB
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
{
"name": "widgets",
"description": "DODOEX Widgets",
"homepage": "https://github.com/DODOEX/widgets#readme",
"repository": "https://github.com/DODOEX/widgets",
"files": [
"dist"
],
"private": "false",
"scripts": {
"prepare": "husky",
"start": "yarn workspace doc start",
"tsc": "lerna run typescript",
"test": "lerna run test",
"test:e2e": "lerna run test:e2e",
"build": "yarn workspace @dodoex/icons build && yarn workspace @dodoex/components build && yarn workspace @dodoex/api build && yarn workspace @dodoex/widgets build",
"release": "yarn run build && yarn workspace @dodoex/widgets release",
"build-doc": "yarn run build && yarn workspace doc build"
},
"workspaces": [
"packages/*"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.7.0",
"husky": "^9.1.7",
"lerna": "^5.4.0",
"prettier": "^3.3.3",
"semantic-release": "24.2.0",
"semantic-release-monorepo": "^8.0.2"
}
}