Initial commit
First version of the Arch Linux Reproducible Rebuilder status webpage, build using webpack, JavaScript and bulma CSS framework.
Showing
- .eslintrc.js 16 additions, 0 deletions.eslintrc.js
- .gitignore 3 additions, 0 deletions.gitignore
- Caddyfile 13 additions, 0 deletionsCaddyfile
- LICENSE 21 additions, 0 deletionsLICENSE
- README.md 24 additions, 0 deletionsREADME.md
- dist/index.html 37 additions, 0 deletionsdist/index.html
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 34 additions, 0 deletionspackage.json
- src/index.js 56 additions, 0 deletionssrc/index.js
- src/style.scss 13 additions, 0 deletionssrc/style.scss
- webpack.config.js 56 additions, 0 deletionswebpack.config.js
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
Caddyfile
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
dist/index.html
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "arch-repro-website", | ||
"version": "0.0.1", | ||
"description": "Arch reproducible Status Website", | ||
"author": "Jelle van der Waa", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"build": "NODE_ENV=production webpack --mode production", | ||
"watch": "webpack --watch" | ||
}, | ||
"dependencies": { | ||
"eslint-loader": "^4.0.2", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.11" | ||
}, | ||
"devDependencies": { | ||
"bulma": "^0.8.2", | ||
"css-loader": "^3.5.3", | ||
"eslint": "^6.8.0", | ||
"eslint-config-standard": "^14.1.1", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"extract-text-webpack-plugin": "^4.0.0-beta.0", | ||
"mini-css-extract-plugin": "^0.9.0", | ||
"node-sass": "^4.14.0", | ||
"optimize-css-assets-webpack-plugin": "^5.0.3", | ||
"sass-loader": "^8.0.2", | ||
"style-loader": "^1.2.0", | ||
"terser-webpack-plugin": "^2.3.6" | ||
} | ||
} |
src/index.js
0 → 100644
src/style.scss
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment