Commits on Source (389)
Showing
- .devcontainer/devcontainer.json 20 additions, 0 deletions.devcontainer/devcontainer.json
- .eslintrc.js 9 additions, 1 deletion.eslintrc.js
- .gitignore 5 additions, 1 deletion.gitignore
- .gitlab-ci.yml 43 additions, 12 deletions.gitlab-ci.yml
- .gitlab/.gitkeep 0 additions, 0 deletions.gitlab/.gitkeep
- .gitlab/issue_templates/.gitkeep 0 additions, 0 deletions.gitlab/issue_templates/.gitkeep
- .gitlab/issue_templates/Bug.md 26 additions, 0 deletions.gitlab/issue_templates/Bug.md
- .idea/inspectionProfiles/Project_Default.xml 0 additions, 6 deletions.idea/inspectionProfiles/Project_Default.xml
- .idea/vcs.xml 0 additions, 6 deletions.idea/vcs.xml
- .vscode/launch.json 17 additions, 0 deletions.vscode/launch.json
- Dockerfile 22 additions, 0 deletionsDockerfile
- README.md 22 additions, 0 deletionsREADME.md
- index.html 12 additions, 2 deletionsindex.html
- nginx.conf 9 additions, 0 deletionsnginx.conf
- package-lock.json 18153 additions, 0 deletionspackage-lock.json
- package.json 32 additions, 19 deletionspackage.json
- src/announceTool.js 0 additions, 29 deletionssrc/announceTool.js
- src/auth.js 233 additions, 67 deletionssrc/auth.js
- src/base64.js 143 additions, 0 deletionssrc/base64.js
- src/blacklist/editBlacklist.js 65 additions, 0 deletionssrc/blacklist/editBlacklist.js
.devcontainer/devcontainer.json
0 → 100644
.gitlab/.gitkeep
0 → 100644
.gitlab/issue_templates/.gitkeep
0 → 100644
.gitlab/issue_templates/Bug.md
0 → 100644
.idea/vcs.xml
deleted
100644 → 0
.vscode/launch.json
0 → 100644
Dockerfile
0 → 100644
nginx.conf
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
... | ... | @@ -6,7 +6,10 @@ |
"scripts": { | ||
"start": "webpack-dev-server --hot --inline", | ||
"build": "webpack -p --config webpack.config.prod.js", | ||
"lint": "eslint src/**" | ||
"build-dev": "webpack -p --config webpack.config.dev.js", | ||
"build-staging": "webpack -p --config webpack.config.staging.js", | ||
"build-local": "webpack -p --config webpack.config.local.js", | ||
"lint": "eslint src/**/*.js src/*.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
... | ... | @@ -15,28 +18,38 @@ |
"author": "Hermann Blum et al", | ||
"dependencies": { | ||
"@material/drawer": "^0.30.0", | ||
"@material/select": "^0.35.1", | ||
"ajv": "^5.5.0", | ||
"amiv-web-ui-components": "git+https://git@gitlab.ethz.ch/amiv/web-ui-components.git#360e65da63f4511db1f6ac56ce103be9254d1d9f", | ||
"axios": "^0.17.1", | ||
"client-oauth2": "^4.2.0", | ||
"mithril": "^1.1.6", | ||
"mithril-infinite": "^1.2.0", | ||
"polythene-core-css": "^1.0.0", | ||
"polythene-css": "^1.0.0", | ||
"polythene-mithril": "^1.0.0", | ||
"querystring": "^0.2.0" | ||
"mithril-infinite": "^1.2.4", | ||
"polythene-core-css": "^1.2.0", | ||
"polythene-css": "^1.2.0", | ||
"polythene-mithril": "1.2.0", | ||
"querystring": "^0.2.0", | ||
"showdown": "^1.9.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^4.10.0", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-loader": "^1.9.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"babel-core": "^6.26.0", | ||
"babel-cli": "^6.26.0", | ||
"babel-loader": "^7.1.2", | ||
"babel-preset-env": "^1.6.1", | ||
"file-loader": "^1.1.5", | ||
"css-loader": "^0.28.7", | ||
"style-loader": "^0.19.0", | ||
"webpack": "^3.8.1", | ||
"webpack-dev-server": "^2.9.5" | ||
"@babel/cli": "^7.2.3", | ||
"@babel/core": "^7.2.2", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.2.0", | ||
"@babel/plugin-syntax-dynamic-import": "^7.2.0", | ||
"@babel/preset-env": "^7.2.3", | ||
"babel-eslint": "^10.0.1", | ||
"babel-loader": "^8.0.4", | ||
"compression-webpack-plugin": "^2.0.0", | ||
"css-loader": "^2.1.0", | ||
"eslint": "^5.16.0", | ||
"eslint-config-airbnb-base": "^13.1.0", | ||
"eslint-import-resolver-webpack": "^0.10.1", | ||
"eslint-loader": "^3.0.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"file-loader": "^3.0.1", | ||
"style-loader": "^0.23.1", | ||
"webpack": "^4.28.3", | ||
"webpack-cli": "^3.1.2", | ||
"webpack-dev-server": "^3.1.14" | ||
} | ||
} |
src/announceTool.js
deleted
100644 → 0
src/base64.js
0 → 100644
src/blacklist/editBlacklist.js
0 → 100644