-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.42 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.42 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
63
64
65
66
67
68
69
70
{
"name": "multiple",
"version": "1.0.0",
"main": "index.js",
"author": "easeava@gmail.com",
"scripts": {
"serve": "cross-env NODE_ENV=development webpack serve --config build/dev.js",
"build": "cross-env NODE_ENV=production webpack --config build/prod.js",
"lint:fix": "eslint --fix --cache --ext .js --format=pretty ./src && npm run lint:style",
"lint:js": "eslint --cache --ext .js --format=pretty ./src",
"lint:prettier": "prettier --write 'src/**/*.js'",
"lint:style": "stylelint --fix \"src/**/*.scss\" --syntax scss"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/eslint-parser": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^7.1.2",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"dotenv": "^8.2.0",
"ejs-loader": "^0.5.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-prettier-standard": "^4.0.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.5.2",
"file-loader": "^6.2.0",
"html-loader": "^2.0.0",
"html-webpack-plugin": "^5.1.0",
"mini-css-extract-plugin": "^1.3.8",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.2.6",
"postcss-loader": "^5.0.0",
"prettier": "^2.2.1",
"prettier-config-standard": "^4.0.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"script-ext-html-webpack-plugin": "^2.1.5",
"style-loader": "^2.0.0",
"stylelint": "^13.10.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.23.0",
"webpack-auto-find-port": "^0.0.5",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-chain": "^6.5.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jquery": "^3.5.1"
}
}