-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
111 lines (111 loc) · 4.31 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"author": "KubeVela",
"license": "Apache 2.0",
"private": true,
"name": "velaux",
"version": "1.8.0",
"repository": "github:kubevela/velaux",
"scripts": {
"dev": "NODE_ENV=dev webpack --progress --color --config scripts/webpack/webpack.dev.js --watch",
"build": "yarn run build-packages && yarn run build-ui",
"build-ui": "NODE_ENV=production webpack --progress --config scripts/webpack/webpack.prod.js",
"lint": "yarn run lint:ts",
"lint:ts": "eslint . --ext .js,.tsx,.ts --cache",
"lint:fix": "yarn lint:ts --fix",
"test": "yarn test:ui",
"test:ui": "yarn workspace @velaux/ui run test",
"build-packages": "yarn packages:theme && yarn packages:data && yarn packages:ui",
"packages:theme": "yarn workspace @velaux/theme build",
"packages:ui": "yarn workspace @velaux/ui build",
"packages:data": "yarn workspace @velaux/data build",
"packages:plugins": "yarn workspace @velaux-plugins/app-demo build && yarn workspace @velaux-plugins/node-dashboard build",
"packages:pack": "rm -rf ./npm-artifacts && mkdir -p ./npm-artifacts && lerna exec --no-private -- yarn pack --out \"../../npm-artifacts/%s-%v.tgz\""
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"dependencies": {
"@alifd/next": "^1.26.15",
"history": "4.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.0",
"tslib": "2.4.1"
},
"resolutions": {
"@types/react": "17.0.14",
"@types/react-dom": "17.0.14"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.2",
"@babel/plugin-proposal-optional-chaining": "7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-react-constant-elements": "7.20.2",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/plugin-transform-typescript": "7.20.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.20.1",
"@emotion/eslint-plugin": "11.10.0",
"@grafana/eslint-config": "5.1.0",
"@grafana/tsconfig": "^1.2.0-rc1",
"@types/react": "^17.0.2",
"@types/react-cookies": "^0.1.0",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.2",
"@types/webpack-env": "1.18.0",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"browserslist": "^4.21.4",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.2.2",
"cypress": "9.5.1",
"esbuild": "0.16.17",
"esbuild-loader": "2.21.0",
"esbuild-plugin-browserslist": "^0.6.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsdoc": "39.8.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-lodash": "7.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-webpack-plugin": "3.2.0",
"fork-ts-checker-webpack-plugin": "7.3.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"lerna": "5.5.4",
"less": "4.1.3",
"less-loader": "11.1.0",
"mini-css-extract-plugin": "2.7.2",
"ngtemplate-loader": "2.1.0",
"pnp-webpack-plugin": "1.7.0",
"prettier": "^2.8.7",
"react-dev-utils": "^11.0.4",
"style-loader": "3.3.2",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "8.1.0",
"tsc": "2.0.4",
"typescript": "4.4.4",
"webpack": "5.74.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1",
"webpack-manifest-plugin": "5.0.0",
"webpack-merge": "5.8.0"
},
"engines": {
"node": ">= 16"
},
"packageManager": "[email protected]"
}