-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.03 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
{
"name": "@fastybird/fastybird",
"private": true,
"version": "1.0.0-dev.24",
"description": "Repository for FastyBird packages development",
"keywords": [
"fastybird",
"fb",
"ui",
"components",
"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/fastybird.git"
},
"workspaces": [
"src/FastyBird/Addon/**/*",
"src/FastyBird/Automator/**/*",
"src/FastyBird/Bridge/**/*",
"src/FastyBird/Connector/**/*",
"src/FastyBird/Core/**/*",
"src/FastyBird/Library/**/*",
"src/FastyBird/Module/**/*",
"src/FastyBird/Plugin/**/*"
],
"scripts": {
"dev": "lerna run dev --stream --ignore '@fastybird/web-ui'",
"build": "lerna run build --stream --ignore '@fastybird/web-ui' --ignore '@fastybird/application' && yarn workspace @fastybird/application build",
"build:dev": "lerna run build:dev --stream --ignore '@fastybird/web-ui' --ignore '@fastybird/application' && yarn workspace @fastybird/application build:dev",
"clean": "lerna clean && rm -rf node_modules",
"fix": "lerna run fix",
"graph": "nx graph",
"types": "lerna run types --stream --ignore '@fastybird/web-ui'",
"lint:js": "lerna run lint:js --stream --ignore '@fastybird/web-ui'",
"lint:js:fix": "lerna run lint:js:fix --stream --ignore '@fastybird/web-ui'",
"lint:styles": "lerna run lint:styles --stream --ignore '@fastybird/web-ui'",
"pretty": "yarn pretty:write && yarn pretty:check --ignore '@fastybird/web-ui'",
"pretty:check": "lerna run pretty:check --ignore '@fastybird/web-ui'",
"pretty:write": "lerna run pretty:write --ignore '@fastybird/web-ui'",
"test": "lerna run test --stream --ignore '@fastybird/web-ui'"
},
"devDependencies": {
"lerna": "^8.1"
},
"engines": {
"node": ">=20"
}
}