This repository was archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "clean-javascript-webpack",
"version": "1.0.0",
"description": "Nous utiliserons dans ce cours une stack Javascript front-end basée sur Webpack.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"dev": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./ --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.5.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.2",
"node-sass": "^7.0.1",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"@babel/polyfill": "^7.12.1"
}
}