-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "mosaic-tiler",
"version": "1.0.0",
"description": "",
"main": "src/main.mjs",
"scripts": {
"start": "node src/main.mjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"dev": "nodemon src/main.mjs",
"gen-openapi": "swagger-jsdoc -d ./src/swaggerDefinition.cjs ./src/*.mjs -o openapi.v3.0.yml"
},
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/tile-cover": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"globby": "^13.1.3",
"got": "^12.5.3",
"morgan": "^1.10.0",
"p-limit": "^4.0.0",
"p-queue": "^7.3.4",
"pg": "^8.9.0",
"sharp": "^0.31.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"unique-string": "^3.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.5",
"@types/swagger-jsdoc": "^6.0.1",
"jest": "^29.4.3",
"nodemon": "^2.0.22",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0"
}
}