-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "mapbox-tile-server",
"version": "0.1.0-dev",
"private": true,
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:sam": "./scripts/build_sam.sh",
"test": "scripts/test.sh",
"watch": "webpack watch --mode production",
"deploy": "scripts/deploy.sh",
"deploy:test": "scripts/deploy_test.sh",
"debug": "scripts/debug.sh"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.51.0",
"@types/better-sqlite3": "^5.4.1",
"better-sqlite3": "^7.1.2",
"path-to-regexp": "^6.2.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/aws-lambda": "^8.10.92",
"@types/node": "^14.14.26",
"@types/tape": "^4.13.2",
"node-bindings-loader": "^1.3.0",
"node-loader": "^1.0.2",
"tape": "^5.5.2",
"ts-loader": "^8.0.14",
"typescript": "^4.1.5",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0"
},
"prettier": {
"printWidth": 100
},
"description": "Defines a simple AWS lambda service for mapbox serving vector tiles from mbtiles databases on S3. This server doesn't support raster tiles, nor _very large_ databases.",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qfes/mapbox-tile-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/qfes/mapbox-tile-server/issues"
},
"homepage": "https://github.com/qfes/mapbox-tile-server#readme"
}