-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "bike-across-america",
"version": "0.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "concurrently 'npm:start:tsc' 'npm:start:jekyll'",
"start:jekyll": "JEKYLL_ENV=development bundle exec jekyll serve --livereload --trace",
"start:tsc": "tsc -w",
"build:jekyll": "JEKYLL_ENV=production bundle exec jekyll build",
"build:tsc": "tsc --outFile /dev/stdout | terser --compress --mangle --source-map --output=./_site/assets/js/pedal-powered.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdeanjones/bike-across-america.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mdeanjones/bike-across-america/issues"
},
"homepage": "https://github.com/mdeanjones/bike-across-america#readme",
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.16",
"node-fetch": "^2.6.7",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/google.maps": "^3.49.2",
"@types/google.visualization": "^0.0.68",
"concurrently": "^7.3.0",
"terser": "^5.14.2"
}
}