-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 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
{
"name": "aw-clock-server",
"version": "3.10.0",
"license": "MIT",
"author": "Kerry Shetline <kerry@shetline.com>",
"private": true,
"main": "tsc-out/app.js",
"keywords": [],
"description": "Server for Astronomy/Weather Clock",
"scripts": {
"start": "nodemon --watch ./src/**/*.ts --ignore **/*.spec.ts -e js,mjs,json,ts --exec 'tsc && chmod +x ./tsc-out/app.js && node ./tsc-out/app.js -d'",
"start-win": "nodemon --watch ./src/**/*.ts --ignore **/*.spec.ts -e js,mjs,json,ts --exec \"tsc && node ./tsc-out/app.js -d\"",
"test": "mocha --require ts-node/register src/**/*.spec.ts --exit",
"build": "webpack && chmod +x ./dist/app.js",
"build:tiny": "NODE_OPTIONS=--max-old-space-size=640 webpack && chmod +x ./dist/app.js",
"build-win": "webpack"
},
"dependencies": {
"@tubular/math": "^3.4.2",
"@tubular/time": "^3.10.5",
"@tubular/util": "^4.18.2",
"by-request": "^1.4.1",
"cookie-parser": "^1.4.7",
"debug": "~4.4.3",
"express": "~5.2.0",
"fortissimo-html": "^1.0.0-alpha.3",
"http-errors": "~2.0.0",
"morgan": "~1.10.1",
"promise-ftp": "^1.3.5",
"request-ip": "^3.3.0"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/http-errors": "^2.0.5",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.10",
"@types/node": "^18.19.127",
"@types/promise-ftp": "^1.3.8",
"@types/request-ip": "0.0.41",
"chai": "^5.3.3",
"mocha": "^10.8.2",
"nock": "^14.0.10",
"nodemon": "^3.1.10",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}