-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "dynamic-demo-foo",
"version": "0.0.0",
"private": true,
"repository": "[email protected]:rawagner/console-dynamic-foo.git",
"scripts": {
"clean": "rm -rf ./dist",
"build": "yarn clean && NODE_ENV=production yarn ts-node ./node_modules/.bin/webpack",
"build-dev": "yarn clean && yarn ts-node ./node_modules/.bin/webpack",
"http-server": "./http-server.sh ./dist",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}' -I '/node_modules/(?!(@console)/)/'"
},
"dependencies": {
"@types/node": "^14.14.34",
"react": "16.9.0",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.11",
"react-router": "5.1.2",
"react-router-dom": "5.1.2"
},
"devDependencies": {
"@openshift-console/dynamic-plugin-sdk": "0.0.2-wp5",
"@openshift-console/dynamic-plugin-sdk-webpack": "0.0.2-wp5",
"@types/react": "16.8.13",
"@types/react-router-dom": "5.1.2",
"comment-json": "4.x",
"http-server": "0.12.x",
"read-pkg": "5.x",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"typescript": "4.4.4",
"webpack": "^5.53.0",
"webpack-cli": "4.9.x"
},
"consolePlugin": {
"name": "console-dynamic-foo",
"version": "0.0.0",
"displayName": "Console Demo Plugin",
"description": "Plasma reactors online. Initiating hyper drive.",
"exposedModules": {
"barUtils": "./utils/bar",
"fooComp": "./components/Foo"
},
"dependencies": {
"@console/pluginAPI": "*"
}
}
}