-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
46
47
48
49
50
51
{
"name": "stockquote-api",
"version": "1.0.0",
"main": "dist/src/functions/*.js",
"description": "",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:production": "npm run prestart:production && npm prune --production",
"watch": "tsc -p tsconfig.build.json --w",
"prestart": "npm run build && func extensions install",
"prestart:production": "npm run build",
"start:host": "func start --cors *",
"start": "npm-run-all --parallel start:host watch",
"test": "jest",
"clean": "rimraf dist",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"prepare": "husky"
},
"lint-staged": {
"{src,tests}/**/*.ts": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@azure/functions": "^4.14.0",
"axios": "^1.16.0",
"yahoo-finance2": "^3.14.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"azure-functions-core-tools": "^4.10.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^17.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}