-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.58 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
55
56
57
58
59
60
61
62
{
"name": "nodetileservercache",
"version": "1.4.2",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"start": "tsc && node ./dist/index.js",
"copyviews": "cp -R src/views dist/",
"start:watch": "nodemon",
"start:production": "cd dist && node -r ts-node/register src/index.js",
"build": "tsc -p tsconfig.json",
"test": "npx eslint src/**/*.ts",
"test-fix": "npx eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/versx/NodeTileserverCache.git"
},
"author": "versx",
"license": "ISC",
"bugs": {
"url": "https://github.com/versx/NodeTileserverCache/issues"
},
"homepage": "https://github.com/versx/NodeTileserverCache#readme",
"dependencies": {
"@mapbox/sphericalmercator": "^1.1.0",
"@types/mapbox__sphericalmercator": "^1.1.3",
"@types/mustache": "^4.0.1",
"axios": "^0.21.2",
"better-logging": "^4.4.0",
"btoa": "^1.2.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"nodemon": "^2.0.4"
},
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/ejs": "^3.0.4",
"@types/express": "^4.17.6",
"@types/node": "^14.0.1",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.0.0",
"typescript": "^3.9.2"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules",
"pogo_protos"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}