-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 KB
/
package.json
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
44
45
46
47
{
"name": "webpack-template",
"version": "1.0.0",
"description": "Basic configuration of Webpack",
"main": "index.js",
"scripts": {
"start": "set NODE_ENV=development&&webpack serve",
"dev": "set NODE_ENV=development&&webpack",
"build": "set NODE_ENV=production&&webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitalii-kopiievskiy/webpack-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vitalii-kopiievskiy/webpack-template/issues"
},
"homepage": "https://github.com/vitalii-kopiievskiy/webpack-template#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.4.2",
"postcss": "^8.4.5",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^7.2.3",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.3",
"jquery": "^3.6.0"
}
}