-
-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.61 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.61 KB
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
83
84
85
86
87
88
89
90
91
{
"name": "@module-federation/devtools",
"version": "0.7.6",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/module-federation/core",
"directory": "packages/chrome-devtools"
},
"scripts": {
"build:storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"reset": "npx rimraf ./**/node_modules",
"dev": "modern dev",
"build": "modern build && node postpack.js",
"build:debug": "DEBUG=true modern build && node postpack.js",
"build:lib": "rm -rf dist && modern-module build -c modern.lib.config.ts",
"release": "npm publish --tag canary",
"test": "vitest run",
"test:e2e": "E2ETEST=true pnpm build && playwright test",
"test:e2e:ui": "E2ETEST=true pnpm build && playwright test --ui",
"start": "modern start",
"serve": "modern serve",
"new": "modern new",
"upgrade": "modern upgrade",
"postinstall": "bash install-deps.bash"
},
"files": [
"dist/",
"install-deps.bash",
"README.md"
],
"exports": {
".": {
"require": "./dist/lib/App.js",
"import": "./dist/es/App.js",
"types": "./dist/types/App.d.ts"
},
"./App": {
"require": "./dist/lib/App.js",
"import": "./dist/es/App.js",
"types": "./dist/types/App.d.ts"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"publishConfig": {
"access": "public",
"types": "./dist/index.d.ts"
},
"dependencies": {
"@arco-design/web-react": "^2.64.1",
"@modern-js/runtime": "2.60.6",
"@module-federation/sdk": "workspace:*",
"ahooks": "^3.7.10",
"dagre": "^0.8.5",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"reactflow": "11.11.4"
},
"devDependencies": {
"@modern-js-app/eslint-config": "2.54.6",
"@modern-js/app-tools": "2.60.6",
"@modern-js/builder-webpack-provider": "2.46.1",
"@modern-js/eslint-config": "2.59.0",
"@modern-js/module-tools": "2.60.6",
"@modern-js/storybook": "2.60.6",
"@modern-js/tsconfig": "2.60.6",
"@module-federation/runtime": "workspace:*",
"@playwright/test": "1.48.2",
"@storybook/addon-essentials": "^8",
"@types/chrome": "^0.0.272",
"@types/dagre": "^0.7.52",
"@types/jest": "~29.2.4",
"@types/node": "~20.12.12",
"@types/react": "~18.2.0",
"@types/react-dom": "~18.3.0",
"lint-staged": "~13.1.0",
"prettier": "~3.3.3",
"rimraf": "~3.0.2",
"typescript": "~5.0.4",
"vitest": "1.2.2"
}
}