-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (48 loc) · 1.21 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
{
"name": "@iavofficial/frontend-framework",
"version": "1.0.0",
"private": false,
"license": "Apache-2.0",
"contributors": [
{
"name": "Joerg Jonas Krahn",
"email": "[email protected]"
},
{
"name": "Daniel Helfenstein",
"email": "[email protected]"
},
{
"name": "Christian Becke",
"email": "[email protected]"
},
{
"name": "Mike Wegele",
"email": "[email protected]"
}
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.3",
"semantic-release": "^24.2.1",
"semantic-release-monorepo": "^8.0.2",
"cross-env": "^7.0.3",
"turbo": "^2.3.3"
},
"scripts": {
"setup:root": "npm i",
"checkout-docs:root": "./scripts/unix/copy-root-docs-and-prepare.sh",
"dev": "turbo run dev build-live",
"test": "turbo run test",
"build": "turbo run build",
"release": "turbo run release --concurrency=1",
"generate-docs": "turbo run generate-docs"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]"
}