-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 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
{
"name": "rutes-catalunya",
"version": "1.0.0",
"description": "rutes-catalunya",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/geostarters/simple-frontend-web-template.git"
},
"keywords": [
"browserify",
"web",
"template"
],
"author": "geostarters",
"license": "MIT",
"bugs": {
"url": "https://github.com/geostarters/simple-frontend-web-template/issues"
},
"homepage": "https://visors.icgc.cat/rutes-catalunya",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"minifyify": "^7.3.5",
"npm-run-all": "^4.1.5",
"st": "^1.2.2",
"watchify": "^3.11.1"
},
"files": [
"dist/",
"src/",
"server/"
],
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/env"
]
}
]
]
},
"scripts": {
"build-dev": "browserify src/index.js --t [ babelify --presets [ @babel/preset-env ]] --standalone simple-frontend-web-template > dist/bundle.js",
"watch-dev": "watchify src/index.js -t babelify --standalone simple-frontend-web-template --outfile dist/bundle-dev.js --verbose",
"build-min": "browserify src/index.js -t babelify --debug --plugin [minifyify --map bundle.js.map --output dist/bundle.js.map] --standalone simple-frontend-web-template > dist/bundle.js",
"build-min-pro": "browserify src/index.js -t babelify --debug --plugin [minifyify --no-map] > dist/bundle-dev.js",
"start-server": "st --no-cache -H 127.0.0.1 --port 9966 --index index.html .",
"start": "run-p watch-dev build-dev start-server open",
"open": "node server/dev-server.js"
},
"dependencies": {
"@geostarters/eslint-config": "^0.0.3",
"ccapture.js": "^1.1.0",
"javascript-state-machine": "^3.1.0",
"jquery": "^3.5.1",
"leaflet-graphicscale": "0.0.2",
"leaflet.elevation": "0.0.3",
"opn": "^6.0.0",
"wnumb": "^1.2.0"
}
}