-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.6 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "webpack-starter",
"description": "Webpack Starter for basic frontend stack",
"license": "ISC",
"author": "Saurabh Dutta (saurabh73)",
"homepage": "https://github.com/saurabh73/webpack-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/saurabh73/webpack-starter.git"
},
"bugs": {
"url": "https://github.com/saurabh73/webpack-starter/issues"
},
"version": "1.0.0",
"scripts": {
"build": "npm run lint && cross-env NODE_ENV=production webpack --mode production --config webpack.config.js",
"dev": "webpack-dev-server --mode development --open --config webpack.config.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"start": "npm run dev"
},
"dependencies": {
"bootstrap": "^4.4.1",
"font-awesome": "^4.7.0",
"jquery": "^3.5.0",
"popper.js": "^1.16.1",
"purgecss-webpack-plugin": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.2.1",
"css-loader": "^2.1.1",
"css-url-relative-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-prettier": "^3.1.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"glob": "^7.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-beta.11",
"husky": "^1.2.0",
"image-webpack-loader": "^4.6.0",
"lint-staged": "^8.2.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"preload-webpack-plugin": "^3.0.0-beta.4",
"prettier": "^1.19.1",
"prettier-package-json": "^2.1.3",
"resolve-url-loader": "^2.3.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^1.1.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"keywords": [
"webpack",
"webpack boilerplate",
"webpack bootstrap jquery",
"webpack jquery",
"webpack starter"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}