-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.51 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
{
"name": "@pagopa/pagopa-gps-donation-service",
"description": "Donation Service",
"author": "pagoPa tech",
"repository": "/~https://github.com/pagopa/pagopa-gps-donation-service",
"version": "1.1.5",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start --javascript",
"start": "npm-run-all --parallel start:host watch",
"test": "jest --coverage --ci --testResultsProcessor jest-sonar-reporter",
"test:local": "jest --coverage",
"lint": "eslint -f json -o eslint-report.json . -c .eslintrc.js --ext .ts,.tsx --cache",
"lint:local": "eslint . -c .eslintrc.js --ext .ts,.tsx --cache",
"lint-autofix:local": "eslint . -c .eslintrc.js --ext .ts,.tsx --fix"
},
"dependencies": {
"@azure/functions": "^3.2.0",
"fp-ts": "^2.12.1",
"io-ts": "^2.2.16",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@pagopa/danger-custom-rules": "^2.0.3",
"@pagopa/eslint-config": "^1.3.1",
"@types/jest": "^28.1.5",
"@types/uuid": "^8.3.4",
"danger": "^11.1.1",
"dependency-check": "^4.1.0",
"dotenv-cli": "^3.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^28.1.3",
"jest-sonar-reporter": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"shx": "^0.3.3",
"stub-azure-function-context": "^2.0.0-alpha.7",
"ts-jest": "^28.0.6",
"ts-node": "^10.9.1"
}
}