-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "svc-api",
"version": "1.10.5",
"description": "SVC API",
"main": "app.js",
"private": true,
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./app/app.ts",
"build": "rimraf dist && webpack && copyfiles -u 1 \"./app/data/*\" \"./dist\" && copyfiles -u 3 \"./node_modules/@tubular/geo-tz/data/geo.dat\" \"./dist\" && (chmod +x ./dist/app.js || echo \"\")",
"start": "tsc && node -r dotenv/config dist/app.js",
"lint": "eslint \"**/*.ts\""
},
"author": "Kerry Shetline <kerry@shetline.com>",
"license": "MIT",
"dependencies": {
"@tubular/geo-tz": "^7.1.0",
"@tubular/math": "^3.3.1",
"@tubular/time": "^3.8.11",
"@tubular/util": "^4.13.1",
"@turf/boolean-point-in-polygon": "^6.5.0",
"basic-auth": "^2.0.1",
"by-request": "^1.3.3",
"dotenv": "^16.0.3",
"emitter": "^0.0.2",
"express": "^4.18.2",
"follow-redirects": "^1.15.2",
"html-entities": "^2.3.3",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"public-ip": "^4.0.4",
"request-ip": "^2.2.0",
"rotating-file-stream": "^1.4.6",
"unidecode-plus": "^1.0.4"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/express": "^4.17.15",
"@types/follow-redirects": "^1.14.1",
"@types/html-entities": "^1.3.4",
"@types/iconv-lite": "0.0.1",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.4",
"@types/mysql": "^2.15.21",
"@types/node": "^14.18.36",
"@types/request-ip": "0.0.37",
"@types/serve-index": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"copyfiles": "^2.4.1",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^4.0.4",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-license-plugin": "^4.2.2"
}
}