-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.94 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ToDoNotes-VanillaJS",
"version": "1.0.0",
"description": "My fourth project - ToDo",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/ermakov95/ToDoNotes-VanillaJS"
},
"author": {
"name": "Ivan Ermakov",
"email": "ermakov.i.1995@gmail.com",
"url": "https://ermakov95.github.io/"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"pre": "cross-env NODE_ENV=development webpack serve --progress --config ./config/webpack.dev.js",
"dev": "cross-env NODE_ENV=development webpack --config ./config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.js",
"analyzer": "webpack-bundle-analyzer --port 4200 build/stats.json"
},
"browserslist": [
"> 1%",
"last 3 version"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@nurminen/html-beautify-webpack-plugin": "^1.1.3",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"compression-webpack-plugin": "^9.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-url-relative-plugin": "^1.1.0",
"cssnano": "^5.0.8",
"glob-import-loader": "^1.1.4",
"html-loader": "^3.0.0",
"html-replace-webpack-plugin": "^2.6.0",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.0.1",
"mini-css-extract-plugin": "^2.4.3",
"perfectionist": "^2.4.0",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.43.3",
"sass-loader": "^12.2.0",
"sass-resources-loader": "^2.2.4",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.60.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
}
}