-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 906 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 906 Bytes
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
{
"name": "config",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/server.js",
"dev": "tsc-watch --noClear --onSuccess \"node ./dist/server.js\"",
"lint": "eslint . --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/express": "^4.17.17",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"ts-node": "^10.7.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.6.3"
},
"dependencies": {
"express": "^4.18.2",
"modesl": "https://git@github.com/englercj/node-esl.git#fdea52fb661aae68a22165e39f2824bac55d926a",
"winston": "^3.8.1"
}
}