-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
{
"name": "api-v2",
"version": "2.1.0",
"engines": {
"node": ">=18.*"
},
"type": "module",
"scripts": {
"clean": "del-cli dist && del-cli temp",
"build": "npm run clean && tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start --node --cors *",
"start": "npm-run-all --parallel start:host watch",
"open-api": "node .openAPI/swagger-node-middleware.js",
"open-api:generate": "npx .openAPI/cli --config .openAPI/cli/config.json",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui"
},
"description": "",
"devDependencies": {
"@azure/functions": "^3.5.1",
"@playwright/test": "^1.40.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"applicationinsights": "^2.9.1",
"del-cli": "^5.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"@puppeteer/browsers": "^2.4.0",
"@pwabuilder/manifest-validation": "^0.0.9",
"ajv": "^8.12.0",
"azure-functions-core-tools": "^4.0.5455",
"form-data": "^4.0.0",
"jimp": "^0.22.10",
"jsdom": "^23.0.1",
"jszip": "^3.10.1",
"lighthouse": "11.1.0",
"node-fetch": "^3.3.2",
"puppeteer": "^23.5.0",
"pwabuilder-lib": "^2.1.12",
"strip-json-comments": "^5.0.1",
"swagger-jsdoc": "^7.0.0-rc.6",
"swagger-ui-dist": "^5.10.3",
"yaml": "^2.3.4"
}
}