-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "hotspot-login-page",
"version": "1.0.1",
"description": "hotspot login page to work with keycloak",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --hot --mode=development",
"build": "NODE_ENV=production webpack --bail --config webpack.config.babel.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --quiet --ext .js src",
"lint:fix": "eslint --fix --quiet --ext .js src"
},
"author": "vzakharchenko",
"license": "ISC",
"keywords": [
"hotspot-wifi",
"hotspot",
"mikrotik-hotspot",
"mikrotik",
"radius-server",
"keycloak",
"openid",
"saml2",
"facebook",
"google",
"Idp"],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.2.0",
"@babel/preset-stage-3": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.17.0",
"html-webpack-plugin": "^3.2.0",
"progress-bar-webpack-plugin": "^1.11.0",
"terser-webpack-plugin": "^2.3.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"axios": "*",
"jsonwebtoken": "*",
"keycloak-js": "*"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [],
"extends": "airbnb",
"rules": {
"no-undef": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"react/jsx-indent": 0
}
}
}