-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 3.63 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
{
"name": "single-spa-portal-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install-all": "npm run install:config && npm run install:people && npm run install:planets && npm run install:fetchWithCache",
"install:config": "npm i",
"install:people": "cd ./people/ && npm i",
"install:planets": "cd ./planets/ && npm i",
"install:fetchWithCache": "cd ./fetchWithCache/ && npm i",
"audit-fix": "npm run audit-fix:config && npm run audit-fix:people && npm run audit-fix:planets && npm run audit-fix:fetchWithCache",
"start": "concurrently --kill-others --kill-others-on-fail -p name --names \"config,common-deps,people,planets,fetchWithCache\" \"npm run start:config\" \"npm run start:common-deps\" \"npm run start:people\" \"npm run start:planets\" \"npm run start:fetchWithCache\"",
"start:config": "webpack-dev-server --config ./webpack.config.config.dev.js --port 8233",
"start:common-deps": "webpack-dev-server --config ./webpack.common-deps.config.dev.js --port 8234",
"start:people": "cd ./people/ && webpack-dev-server --config ./webpack.dev.js --port 8236",
"start:planets": "cd ./planets/ && webpack-dev-server --config ./webpack.dev.js --port 8237",
"start:fetchWithCache": "cd ./fetchWithCache/ && webpack-dev-server --config ./webpack.dev.js --port 8238",
"build": "npm run build:config && npm run build:common-deps && npm run build:fetchWithCache",
"build:config": "webpack --config ./webpack.config.config.js -p",
"build:common-deps": "webpack --config ./webpack.common-deps.config.js -p",
"build:people": "cd ./people/ && webpack --config ./webpack.config.js -p",
"build:planets": "cd ./planets/ && webpack --config ./webpack.config.js -p",
"build:fetchWithCache": "cd ./fetchWithCache/ && webpack --config ./webpack.config.js -p",
"audit-fix:config": "npm audit fix",
"audit-fix:people": "cd ./people/ && npm audit fix",
"audit-fix:planets": "cd ./planets/ && npm audit fix",
"audit-fix:fetchWithCache": "cd ./fetchWithCache/ && npm audit fix",
"postinstall": "node postinstall.js"
},
"author": "Justin McMurdie",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "5.7.2",
"@scality/core-ui": "github:scality/core-ui.git#cdef38f",
"polished": "3.4.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-debounce-input": "3.2.0",
"react-redux": "^7.1.0",
"react-router": "^5.1.0",
"react-router-dom": "^5.1.0",
"react-virtualized": "9.21.0",
"react-select": "3.0.3",
"redux": "^4.0.1",
"styled-components": "^4.1.2",
"vega": "^5.7.3",
"vega-embed": "^6.0.0",
"vega-lite": "^4.0.0-beta.10"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "7.7.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.0",
"clean-webpack-plugin": "0.1.19",
"concurrently": "4.0.1",
"copy-webpack-plugin": "4.5.2",
"css-loader": "1.0.0",
"style-loader": "0.23.0",
"url-loader": "3.0.0",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"webpack-dev-server": "^3.1.14",
"@fortawesome/fontawesome-free": "5.7.2",
"@scality/core-ui": "github:scality/core-ui.git#384dc3b",
"polished": "3.4.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-debounce-input": "3.2.0",
"react-virtualized": "9.21.0",
"react-select": "3.0.3",
"styled-components": "^4.1.2",
"vega": "^5.7.3",
"vega-embed": "^6.0.0",
"vega-lite": "^4.0.0-beta.10"
}
}