forked from Azure-Samples/contoso-real-estate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "api",
"version": "1.0.0",
"description": "A v4 programming model Azure Functions application.",
"scripts": {
"env": "azd env get-values --no-prompt > .env",
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start:host": "func start --typescript",
"start": "npm-run-all --parallel start:host watch",
"lint": "eslint --config ../../.eslintrc.js",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"No tests yet...\""
},
"dependencies": {
"@azure/functions": "^4.0.0",
"@azure/identity": "^3.2.3",
"@azure/keyvault-secrets": "^4.7.0",
"applicationinsights": "^2.8.0",
"dotenv": "^16.3.1",
"mongodb": "^5.6.0",
"mongoose": "^7.3.1",
"swagger-ui-dist": "^4.14.0",
"yamljs": "^0.3.0",
"pg": "^8.11.1",
"winston": "^3.9.0",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/node": "^18.16.19",
"@types/pg": "^8.10.2",
"@types/swagger-ui-dist": "^3.30.1",
"@types/yamljs": "^0.2.31",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"typescript": "^4.8.4"
},
"main": "dist/src/index.js"
}