-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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": "deview2023-root",
"private": true,
"scripts": {
"build": "npm run build --prefix ./packages/resize-watcher"
},
"repository": {
"type": "git",
"url": "https://github.com/egjs/deview2023"
},
"author": "NAVER Corp.",
"license": "MIT",
"devDependencies": {
"@cfcs/cli": "^0.0.3",
"@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.1.0",
"lerna": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "~4.1"
},
"overrides": {
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "~4.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@egjs/build-helper",
"**/@egjs/build-helper/**",
"**/rollup-plugin-vue",
"**/rollup-plugin-vue/**",
"**/@vue/*",
"**/@vue/*/**",
"**/vue",
"**/vue/**",
"**/svelte",
"**/svelte/**"
]
}
}