-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 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
{
"name": "is-on-water",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --noClear --onSuccess \"node --enable-source-maps ./dist\"",
"lint": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/koa": "^2.13.5",
"@types/koa__cors": "^3.3.0",
"@types/koa__router": "^12.0.0",
"@types/koa-static": "^4.0.2",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@types/unzipper": "^0.10.5",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"geotiff": "^2.0.7",
"koa": "^2.13.4",
"koa-static": "^5.0.0",
"unzipper": "^0.10.11"
}
}