forked from naver/egjs-conveyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.58 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "conveyer-root",
"description": "Conveyer adds Drag gestures to your Native Scroll.",
"private": true,
"scripts": {
"update-angular-consts": "npm run build --prefix packages/conveyer && node ./config/update-type-consts.js",
"packages": "npm run packages:update && npm run packages:build && npm run packages:publish",
"packages:update": "lerna-helper version && npm run update-angular-consts",
"packages:build": "npm run build --prefix packages/conveyer && lerna run build --ignore @egjs/conveyer --ignore @egjs/ngx-conveyer --ignore docs --stream",
"packages:publish": "lerna-helper publish --ignore @egjs/ngx-conveyer --commit 'chore: update packages versions'",
"changelog": "lerna-helper changelog --type all --base @egjs/conveyer",
"docs:build": "jsdoc-to-mdx -c ./jsdoc-to-mdx.json",
"docs:version": "node ./config/docs-version-up",
"demo:build": "npm run docs:build && npm run docs:version && npm run build --prefix packages/docs",
"demo:deploy": "lerna-helper deploy --base @egjs/conveyer --remote upstream",
"release": "lerna-helper release --base @egjs/conveyer --remote upstream --branch main",
"update:cfcs": "cfcs lerna update"
},
"repository": {
"type": "git",
"url": "https://github.com/naver/egjs-conveyer"
},
"author": "NAVER Corp.",
"license": "MIT",
"keywords": [
"scroll",
"reactive",
"hooks",
"conveyer",
"image",
"video",
"list",
"drag"
],
"devDependencies": {
"@cfcs/cli": "^0.0.3",
"@daybrush/jsdoc": "^0.3.12",
"@egjs/release-helper": "^0.2.8",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.2",
"egjs-jsdoc-template": "^1.4.4",
"jsdoc-to-mdx": "^1.2.1",
"lerna": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "~4.1"
},
"overrides": {
"@daybrush/utils": "^1.7.0",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@cfcs/core": "~0.0.12"
},
"workspaces": {
"packages": [
"packages/*",
"packages/ngx-conveyer/projects/ngx-conveyer"
],
"nohoist": [
"**/@egjs/build-helper",
"**/@egjs/build-helper/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**",
"**/karma",
"**/karma/**",
"**/karma-*",
"**/karma-*/**",
"**/@types/chai",
"**/@types/chai/**",
"**/@types/karma-chai",
"**/@types/karma-chai/**",
"**/@types/mocha",
"**/@types/mocha/**",
"**/@vue/*",
"**/@vue/*/**",
"**/vue",
"**/vue/**"
]
}
}