-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 1020 Bytes
/
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
{
"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 install",
"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": {
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.3",
"lerna": "^5.4.0",
"prettier": "^3.3.3"
},
"dependencies": {}
}