This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "webpack-boilerplate",
"version": "0.1.0",
"description": "",
"author": "nokv",
"private": false,
"keywords": [],
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve",
"build": "cross-env NODE_ENV=production webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:style": "stylelint \"**/*.{css,scss}\" --ignore-path .stylelintignore",
"fix": "run-s fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "prettier -w .",
"fix:style": "yarn lint:style --fix"
},
"engines": {
"node": "16"
},
"browserslist": [
"defaults",
"not ie < 11",
"not dead"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/preset-env": "7.18.9",
"@types/node": "16.11.47",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"babel-loader": "8.2.5",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"core-js": "3.24.1",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-webpack-plugin": "3.1.1",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.14",
"postcss-loader": "7.0.1",
"postcss-preset-env": "7.7.2",
"prettier": "2.7.1",
"ress": "5.0.2",
"sass": "1.52.3",
"sass-loader": "13.0.2",
"stylelint": "14.9.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0",
"stylelint-config-standard-scss": "4.0.0",
"stylelint-scss": "4.2.0",
"stylelint-webpack-plugin": "3.3.0",
"terser-webpack-plugin": "5.3.3",
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3",
"webpackbar": "5.0.2"
}
}