-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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": "root",
"private": true,
"homepage": "https://github.com/yiisoft/yii-dev-panel",
"keywords": [
"yiisoft",
"yii",
"debug",
"gii",
"yii-dev-panel"
],
"author": "Dmitrii Derepko <[email protected]> (https://github.com/xepozz)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/yiisoft/yii-dev-panel"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@originjs/vite-plugin-federation": "^1.3.5",
"@types/node": "^22.3.0",
"@vitejs/plugin-react": "^4.2.1",
"gh-pages": "^6.1.1",
"lerna": "^8.1.8",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.4.4",
"verdaccio": "^5.30.3",
"vite": "^5.4.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"scripts": {
"predeploy": "npm run build; npm run copy-toolbar",
"deploy": "gh-pages -t true -d packages/yii-dev-panel/dist",
"start": "lerna run start --parallel --verbose",
"build": "lerna run build --parallel --verbose",
"build:dev": "npm run build:dev -w packages/yii-dev-panel; npm run build -w packages/yii-dev-toolbar; npm run copy-toolbar",
"serve:dev": "npm run serve:dev -w packages/yii-dev-panel",
"copy-toolbar": "mkdir packages/yii-dev-panel/dist/toolbar && cp -r packages/yii-dev-toolbar/dist/bundle.* packages/yii-dev-toolbar/dist/assets packages/yii-dev-panel/dist/toolbar"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}