-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 876 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 876 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
33
34
35
{
"name": "status-page-api",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Matej Jellus",
"email": "juffalow@juffalow.com",
"url": "https://juffalow.com"
},
"dependencies": {
"@godaddy/terminus": "^4.9.0",
"express": "^4.17.1",
"joi": "^17.13.3",
"lru-cache": "^11.0.0",
"uuid": "^10.0.0",
"winston": "^3.3.3"
},
"scripts": {
"build": "tsc",
"start": "tsc -w --preserveWatchOutput & nodemon -q -w dist dist/index.js",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"typescript": "^5.2.2"
},
"packageManager": "yarn@4.5.0"
}