-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.47 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
{
"name": "webpack4-boilerplate-leaflet",
"version": "1.0.0",
"description": "Webpack 4 boilerplate for leaflet projects without front-end framework.",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"start:open": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"eslint": "eslint --ext .js src",
"stylelint": "stylelint src/**/**/**/**/*.scss --syntax scss",
"stylelint:fix": "stylelint src/**/**/**/**/*.scss --syntax scss --fix",
"lint": "npm run stylelint && npm run eslint"
},
"author": {
"name": "Robby",
"email": "ta7382@gmail.com"
},
"repository": {
"type": "git",
"url": "/~https://github.com/explooosion/webpack4-boilerplate-leaflet.git"
},
"bugs": {
"url": "/~https://github.com/explooosion/webpack4-boilerplate-leaflet/issues"
},
"homepage": "/~https://github.com/explooosion/webpack4-boilerplate-leaflet",
"keywords": [
"webpack4",
"boilerplate",
"leaflet",
"marker",
"cluster",
"map",
"scss"
],
"license": "MIT",
"dependencies": {
"copy-webpack-plugin": "^4.6.0",
"leaflet": "^1.3.4",
"leaflet.gridlayer.googlemutant": "^0.7.0",
"leaflet.markercluster": "^1.4.1",
"leaflet.vectorgrid": "^1.3.0",
"pre-commit": "^1.2.2",
"url-loader": "^1.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"csv-loader": "^2.1.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"stylelint": "^9.6.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-sass-guidelines": "^5.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0",
"stylelint-scss": "3.3.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.2",
"xml-loader": "^1.2.1"
}
}