-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
{
"name": "mapbox-gl-js-v2-experiment",
"version": "0.1.3",
"private": false,
"description": "Mapbox GL JS v2 experiment.",
"main": "dist/app.js",
"scripts": {
"pretty": "$npm_execpath prettier -w \"**/*.(js|jsx)\"",
"start": "$npm_execpath webpack serve --config webpack.dev.js",
"build": "$npm_execpath webpack --config webpack.prod.js",
"serve": "http-server dist -a localhost -p 8080"
},
"repository": "https://github.com/minagawah/mapbox-gl-js-v2-experiment.git",
"keywords": [
"mapbox"
],
"author": "minagawah <minag@tokyo800.jp>",
"license": "(Unlicense OR MIT)",
"bugs": {
"url": "https://github.com/minagawah/mapbox-gl-js-v2-experiment/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"mapbox-gl": "^2.0.1",
"ramda": "^0.27.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/runtime-corejs3": "^7.12.5",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"core-js": "3",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"http-server": "^0.12.3",
"license-webpack-plugin": "^2.3.9",
"mini-css-extract-plugin": "^1.3.3",
"postcss-loader": "^4.1.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.2",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3"
}
}