-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.2 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
73
74
75
{
"name": "starter-kit",
"version": "1.0.0",
"description": "Starter Kit with Webpack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --open",
"build": "webpack --config webpack.prod.js",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json",
"now-build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harshPPatel/starter-kit.git"
},
"keywords": [
"starter kit",
"webpack"
],
"author": "Harsh Patel",
"license": "ISC",
"bugs": {
"url": "https://github.com/harshPPatel/starter-kit/issues"
},
"homepage": "https://github.com/harshPPatel/starter-kit#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"add-asset-html-webpack-plugin": "^3.1.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-inline-svg-plugin": "^1.2.4",
"html-webpack-plugin": "^3.2.0",
"htmlhint": "^0.11.0",
"husky": "^3.0.5",
"image-webpack-loader": "^5.0.0",
"jsdoc": "^3.6.3",
"lint-staged": "^9.2.5",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^12.0.0",
"stylelint-loader": "^6.2.0",
"url-loader": "^2.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"autoprefixer": "^9.6.1",
"grunt": "^1.0.4",
"html5shiv": "^3.7.3",
"leaflet": "^1.6.0",
"leaflet-control-geocoder": "^1.10.0",
"leaflet-geosearch": "^2.7.0",
"leaflet-minimap": "^3.6.1",
"leaflet-routing-machine": "^3.2.12",
"leaflet-sidebar-v2": "^3.2.2",
"leaflet.locatecontrol": "^0.68.0",
"selectivizr": "^1.0.3",
"webpack-merge": "^4.2.1"
}
}