-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1016 Bytes
/
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
{
"name": "hello-fresh-recipe-backend",
"version": "1.0.3",
"description": "Hello fresh scraper backend",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"format": "prettier --write \"**/*.{js,ts,json,less,css,md,html}\"",
"format:check": "prettier --loglevel debug --check \"**/*.{js,ts,json,less,css,md,html}\"",
"migrate": "npm run prestart && node ./dist/migrations/migrations.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/fancy-log": "^2.0.0",
"@types/http-errors": "^2.0.1",
"@types/node": "^18.11.18",
"prettier": "^2.8.2",
"tslint": "^6.1.3"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fancy-log": "^2.0.0",
"http-errors": "^2.0.0",
"mongoose": "^6.8.3",
"tsc": "^2.0.4",
"typescript": "^4.9.4"
}
}