-
- Downloads
question 2 Partie D
Showing
- .babelrc 4 additions, 2 deletions.babelrc
- .prettierrc 7 additions, 0 deletions.prettierrc
- .vscode/setting.json 6 additions, 0 deletions.vscode/setting.json
- index.html 1 addition, 1 deletionindex.html
- package-lock.json 2385 additions, 11 deletionspackage-lock.json
- package.json 8 additions, 2 deletionspackage.json
- src/components/Components.js 27 additions, 0 deletionssrc/components/Components.js
- src/components/Img.js 7 additions, 0 deletionssrc/components/Img.js
- src/data.js 25 additions, 0 deletionssrc/data.js
- src/main.js 16 additions, 124 deletionssrc/main.js
- webpack.config.js 26 additions, 0 deletionswebpack.config.js
.prettierrc
0 → 100644
.vscode/setting.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,10 @@ |
"devDependencies": { | ||
"@babel/cli": "^7.16.8", | ||
"@babel/core": "^7.16.12", | ||
"@babel/preset-env": "^7.16.11" | ||
"@babel/preset-env": "^7.16.11", | ||
"babel-loader": "^8.2.3", | ||
"prettier": "^2.5.1", | ||
"webpack": "^5.68.0", | ||
"webpack-cli": "^4.9.2" | ||
} | ||
} |
src/components/Components.js
0 → 100644
src/components/Img.js
0 → 100644
src/data.js
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment