generated from pagopa/io-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@pagopa/express-azure-functions",
"version": "4.0.1",
"description": "Express adapter for Azure Functions",
"repository": "/~https://github.com/pagopa/io-functions-express",
"author": "https://pagopa.gov.it",
"license": "MIT",
"files": [
"dist/src"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm-run-all --parallel start:host watch",
"pretest": "npm run build",
"test": "jest -i",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx",
"preversion": "auto-changelog --config .auto-changelog.json --unreleased --commit-limit false --stdout --template preview.hbs",
"version": "auto-changelog -p --config .auto-changelog.json --unreleased && git add CHANGELOG.md"
},
"devDependencies": {
"@azure/functions": "^3.2.0",
"@pagopa/eslint-config": "^1.3.1",
"@types/express": "^4.17.2",
"@types/express-serve-static-core": "^4.17.2",
"@types/jest": "^29.5.0",
"@types/node": "~18.13.0",
"auto-changelog": "^2.2.1",
"axios": "^1.3.5",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"tree-kill": "^1.2.2",
"ts-jest": "^29.1.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"express": "^4.17.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"ts",
"tsx"
],
"preset": "ts-jest",
"testMatch": null
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {}
}