mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a991379a74
Some tests are not fully rewritten in Go, a typescript wrapper is called instead until we remove the remaining TS tests and dependencies. Also, dockerize every components (mainly Authelia backend, frontend and kind) so that the project does not interfere with user host anymore (open ports for instance). The only remaining intrusive change is the one done during bootstrap to add entries in /etc/hosts. It will soon be avoided using authelia.com domain that I own.
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "authelia-portal",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@material/react-button": "^0.8.0",
|
|
"@material/react-checkbox": "^0.8.0",
|
|
"@material/react-text-field": "^0.8.0",
|
|
"@types/classnames": "^2.2.7",
|
|
"@types/jss": "^9.5.7",
|
|
"@types/node": "^10.12.2",
|
|
"@types/node-sass": "^3.10.32",
|
|
"@types/qrcode.react": "^0.8.1",
|
|
"@types/query-string": "^6.2.0",
|
|
"@types/react": "^16.4.18",
|
|
"@types/react-dom": "^16.0.9",
|
|
"@types/react-redux": "^6.0.12",
|
|
"@types/react-router-dom": "^4.3.1",
|
|
"@types/redux-thunk": "^2.1.0",
|
|
"classnames": "^2.2.6",
|
|
"connected-react-router": "^6.2.1",
|
|
"node-sass": "^4.11.0",
|
|
"qrcode.react": "^0.9.2",
|
|
"query-string": "^6.2.0",
|
|
"react": "^16.10.2",
|
|
"react-dom": "^16.6.0",
|
|
"react-redux": "^6.0.0",
|
|
"react-router-dom": "^4.3.1",
|
|
"react-scripts": "^2.1.3",
|
|
"redux-thunk": "^2.3.0",
|
|
"typesafe-actions": "^3.0.0",
|
|
"typescript": "^3.1.6",
|
|
"u2f-api": "^1.0.10",
|
|
"utility-types": "^3.4.1"
|
|
},
|
|
"scripts": {
|
|
"start": "SASS_PATH=./node_modules react-scripts start",
|
|
"build": "INLINE_RUNTIME_CHUNK=false SASS_PATH=./node_modules react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
],
|
|
"proxy": "http://authelia-backend:9091/"
|
|
}
|