-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1004 Bytes
/
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
{
"name": "mapbox-gl-webpack-demo",
"version": "0.0.1",
"description": "Mapbox GL JS Webpack Demo",
"main": "index.ts",
"scripts": {
"build-dev": "webpack -d --mode development",
"build-prod": "webpack -p --mode production",
"clean": "rm dist/bundle.js",
"start": "webpack-dev-server --open",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch"
},
"keywords": [],
"author": "Sage Wall",
"license": "ISC",
"repository": "https://www.github.com/sagewall/mapbox-gl-webpack-demo",
"devDependencies": {
"@types/mapbox-gl": "^1.9.0",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"mapbox-gl": "^0.54.1"
}
}