-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "evl-daemon-ts",
"type": "module",
"version": "0.0.1",
"description": "An Envisalink EVL daemon written in TypeScript.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mfarr/evl-daemon-ts.git"
},
"author": {
"name": "Mike Farr",
"email": "mike@noneleft.ca"
},
"scripts": {
"cli": "node ./dist/src/app/cli.js",
"precli": "yarn run build",
"watch": "tsc --watch",
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "jest"
},
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^8.56.0",
"@tsconfig/node-lts": "^20.1.2",
"@types/convict": "^6.1.6",
"@types/convict-format-with-validator": "^6.0.5",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"dependencies": {
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"winston": "^3.13.0"
}
}