-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
58
59
60
61
{
"name": "@tsed/root",
"version": "3.20.8",
"description": "Vuepress theme for tsed.io",
"repository": "https://github.com/tsedio/vuepress-theme-tsed",
"author": "Romain Lenzotti",
"license": "MIT",
"private": true,
"scripts": {
"configure": "monorepo ci configure",
"build": "monorepo build",
"publish": "monorepo publish --dry-run",
"serve": "lerna run serve --stream",
"serve:storybook": "lerna run serve --stream --scope @tsed/vuepress-storybook",
"serve:theme": "lerna run serve --stream --scope vuepress-theme-tsed",
"build:storybook": "lerna run build:storybook --stream --scope @tsed/vuepress-storybook",
"publish:storybook": "yarn build:storybook && monorepo publish ghpages",
"test": "lerna run test --stream",
"release": "semantic-release"
},
"dependencies": {
"@sass-collective/sass-rem": "^1.4.1",
"@silvanite/vuepress-plugin-tailwind": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@tsed/monorepo-utils": "^1.21.0",
"@vue/test-utils": "^1.1.1",
"babel-jest": "^26.6.3",
"lerna": "4.0.0",
"lite-server": "2.5.4",
"jest": "^26.6.3",
"semantic-release": "19.0.2",
"typescript": "^4.7.2",
"vue-jest": "4.0.1"
},
"resolutions": {
"watchpack": "1.6.1"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"monorepo": {
"productionBranch": "master",
"developBranch": "master",
"npmAccess": "public",
"npmDistTag": "latest",
"ignoreSyncDependencies": [],
"ghpages": [
{
"dir": "./packages/storybook/dist",
"url": "https://github.com/tsedio/vuepress-theme-tsed.git",
"branch": "ghpages",
"cname": "storybook.tsed.io"
}
]
}
}