-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.72 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
{
"name": "bikeshare-frontend",
"version": "1.0.0",
"description": "Bike share frontend",
"main": "app.js",
"repository": "[email protected]:techieshark/bikeshare-frontend.git",
"author": "Peter W <[email protected]>",
"license": "MIT",
"dependencies": {
"@mapbox/mapbox-sdk": "^0.7.0",
"@mapbox/polyline": "^1.1.0",
"@turf/buffer": "^5.1.5",
"@turf/circle": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/points-within-polygon": "^5.1.5",
"autocompleter": "^5.1.0",
"nouislider": "^14.0.2"
},
"scripts": {
"build": "webpack --mode=development && cp src/index.html dist/",
"build-min": "webpack --mode=production --optimize-minimize && cp src/index.html dist/",
"deploy": "gh-pages -d dist",
"watch": "webpack --mode=development --progress --watch",
"start": "cp src/index.html dist/ && webpack-dev-server --https --cert=ssl/cert.pem --key=ssl/key.pem --open",
"start-prod": "cd dist && http-server -S -C ../ssl/cert.pem -K ../ssl/key.pem -p 8081",
"server": "http-server -p 3000 --cors",
"build-debug": "webpack --mode=development --display-modules",
"clean": "rm -rf dist/*",
"lint": "./node_modules/.bin/eslint src/",
"lintfix": "./node_modules/.bin/eslint --fix src/"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.5.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^4.2.0",
"gh-pages": "^2.1.1",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}