-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 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": "bootstrap-server",
"private": true,
"version": "1.1.2",
"description": "A HTTP server serving basic bootstrap data as JSON object.",
"scripts": {
"lint": "eslint --ext .ts src --fix",
"compile": "tsc",
"compile:watch": "tsc -w",
"start": "npm run compile && node lib/main.js"
},
"engines": {
"node": "18.17"
},
"dependencies": {
"@types/bunyan": "^1.8.8",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"express": "^4.22.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"prettier": "^3.0.1"
}
}