-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 KB
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
{
"name": "@sakitam-gis/tile-spider",
"version": "0.0.1",
"description": "tile spider",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon -e js,ts --watch src --exec npm run debug",
"predebug": "npm run build",
"debug": "cross-env NODE_ENV=development node --inspect dist/server.js",
"prebuild": "npm run clean",
"build": "npm run lint && tsc",
"prod": "cross-env NODE_ENV=production node dist/server.js",
"lint": "tslint -c tslint.json -p tsconfig.json",
"clean": "rimraf -rf dist @types"
},
"devDependencies": {
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.0",
"@types/koa-logger": "^3.1.0",
"@types/koa-router": "^7.0.30",
"@types/koa-static": "^4.0.0",
"cross-env": "^5.2.0",
"debug": "^2.6.3",
"koa-static": "^5.0.0",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"dependencies": {
"axios": "^0.18.0",
"canvas": "^1.6.11",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-custom-response": "^0.3.0",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.0.0",
"koa-router": "^7.4.0",
"maptalks": "^0.40.4",
"maptalks.node": "^0.1.1",
"restc": "^0.3.2"
},
"author": "sakitam-fdd <smilefdd@gmail.com>",
"license": "MIT"
}