-
- Downloads
arrivé à router (c dur zebi)
Showing
- .babelrc 4 additions, 1 deletion.babelrc
- .vscode/.prettierrc 8 additions, 0 deletions.vscode/.prettierrc
- .vscode/settings.json 6 additions, 0 deletions.vscode/settings.json
- index.html 61 additions, 37 deletionsindex.html
- package-lock.json 1261 additions, 18 deletionspackage-lock.json
- package.json 22 additions, 15 deletionspackage.json
- src/Router.js 27 additions, 0 deletionssrc/Router.js
- src/components/Component.js 31 additions, 0 deletionssrc/components/Component.js
- src/components/Img.js 6 additions, 0 deletionssrc/components/Img.js
- src/components/PizzaThumbnail.js 27 additions, 0 deletionssrc/components/PizzaThumbnail.js
- src/data.js 27 additions, 0 deletionssrc/data.js
- src/main.js 24 additions, 131 deletionssrc/main.js
- src/pages/PizzaList.js 14 additions, 0 deletionssrc/pages/PizzaList.js
- webpack.config.js 27 additions, 0 deletionswebpack.config.js
.vscode/.prettierrc
0 → 100644
.vscode/settings.json
0 → 100644
This diff is collapsed.
| ... | ... | @@ -4,7 +4,9 @@ |
| "description": "", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "test": "echo \"Error: no test specified\" && exit 1" | ||
| "test": "echo \"Error: no test specified\" && exit 1", | ||
| "build": "webpack --mode=production", | ||
| "watch": "webpack --mode=development --watch" | ||
| }, | ||
| "author": "Thomas Fritsch <thomas.fritsch@univ-lille.fr> (https://gitlab.univ-lille.fr/thomas.fritsch)", | ||
| "homepage": "https://gitlab.univ-lille.fr/js", | ||
| ... | ... | @@ -12,6 +14,11 @@ |
| "devDependencies": { | ||
| "@babel/cli": "^7.12.10", | ||
| "@babel/core": "^7.12.10", | ||
| "@babel/preset-env": "^7.12.11" | ||
| "@babel/plugin-proposal-class-properties": "^7.12.13", | ||
| "@babel/preset-env": "^7.12.11", | ||
| "babel-loader": "^8.2.2", | ||
| "prettier": "^2.2.1", | ||
| "webpack": "^5.20.0", | ||
| "webpack-cli": "^4.5.0" | ||
| } | ||
| } |
src/Router.js
0 → 100644
src/components/Component.js
0 → 100644
src/components/Img.js
0 → 100644
src/components/PizzaThumbnail.js
0 → 100644
src/data.js
0 → 100644
src/pages/PizzaList.js
0 → 100644
webpack.config.js
0 → 100644
Please sign in to comment