-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "single-spa-login-example-with-npm-packages",
"version": "0.2.5",
"description": "Single-spa application example which imports registered applications from NPM packages and manages authentication features as login.",
"main": "root-application.js",
"scripts": {
"serve": "webpack-dev-server",
"start": "node server.js",
"build": "webpack --config webpack.config.js -p",
"heroku-postbuild": "npm run build",
"lint": "eslint . --ext .js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jualoppaz/single-spa-login-example-with-npm-packages.git"
},
"author": "Juan Manuel López Pazos",
"license": "MIT",
"bugs": {
"url": "https://github.com/jualoppaz/single-spa-login-example-with-npm-packages/issues"
},
"homepage": "https://github.com/jualoppaz/single-spa-login-example-with-npm-packages#readme",
"devDependencies": {
"@babel/core": "7.8.3",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "2.20.1",
"html-webpack-plugin": "3.2.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.27",
"@fortawesome/free-brands-svg-icons": "5.12.1",
"@fortawesome/free-solid-svg-icons": "5.12.0",
"@fortawesome/vue-fontawesome": "0.1.9",
"bootstrap": "4.4.1",
"bootstrap-vue": "2.2.2",
"single-spa": "4.4.2",
"single-spa-angular-app": "0.1.5",
"single-spa-auth-app": "0.2.0",
"single-spa-home-app": "0.1.4",
"single-spa-layout-app": "0.2.5",
"single-spa-react-app": "0.1.4",
"single-spa-vue": "1.7.0",
"single-spa-vue-app": "0.1.9",
"vue": "2.6.11",
"vue-router": "3.1.4",
"vue-toastr": "2.1.2",
"zone.js": "0.10.2"
}
}