-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "@fastybird/web-ui",
"private": true,
"version": "1.0.0-dev.24",
"description": "FastyBird IoT application theme library",
"keywords": [
"fastybird",
"fb",
"ui",
"components",
"theme",
"vue"
],
"homepage": "https://www.fastybird.com",
"bugs": "https://github.com/FastyBird/fastybird/issues",
"license": "Apache-2.0",
"author": {
"name": "FastyBird s.r.o.",
"email": "code@fastybird.com",
"url": "https://www.fastybird.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/FastyBird/web-ui-library.git"
},
"workspaces": [
"docs",
"packages/**/*",
"web-ui-library"
],
"scripts": {
"dev": "lerna run dev --stream",
"build": "lerna run build --stream",
"build:dev": "lerna run build:dev --stream",
"clean": "lerna clean && rm -rf node_modules",
"bootstrap": "lerna bootstrap",
"fix": "lerna run fix",
"graph": "nx graph",
"types": "lerna run types --stream",
"lint:js": "lerna run lint:js --stream",
"lint:js:fix": "lerna run lint:js:fix --stream",
"lint:styles": "lerna run lint:styles --stream",
"playground": "lerna run dev --scope=@fastybird/web-ui-docs",
"pretty": "yarn pretty:write && yarn pretty:check",
"pretty:check": "lerna run pretty:check",
"pretty:write": "lerna run pretty:write",
"test": "yarn jest --coverage"
},
"devDependencies": {
"lerna": "^8.1"
},
"engines": {
"node": ">=20"
}
}