forked from pagopa-archive/ade-aa-ms-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
68
69
70
71
72
{
"name": "ade-aa-mock",
"version": "1.1.1",
"description": "ADE Attribute Authority Mock",
"repository": {
"type": "git",
"url": "git+https://github.com/italia/spid-express.git"
},
"author": "https://pagopa.gov.it",
"license": "MIT",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"scripts": {
"prebuild": "shx rm -rf dist && yarn generate",
"build": "tsc",
"start": "node -r dotenv/config dist/src/server.js",
"dev": "nodemon -r dotenv/config --inspect=0.0.0.0 dist/src/server.js",
"generate": "npm-run-all generate:*",
"generate:definitions": "shx rm -rf generated/definitions && gen-api-models --api-spec openapi/index.yaml --out-dir generated/definitions",
"postversion": "git push && git push --tags",
"dist:modules": "modclean -r -n default:safe && yarn install --production",
"predeploy": "npm-run-all generate build dist:modules",
"test": "jest -i",
"test:coverage": "jest -i --coverage",
"lint": "tslint --project ."
},
"devDependencies": {
"@pagopa/openapi-codegen-ts": "^9.0.0",
"@types/express": "4.17.0",
"@types/jest": "^24.0.13",
"@types/node": "10.14.1",
"auto-changelog": "^2.2.1",
"danger": "^7.0.0",
"danger-plugin-digitalcitizenship": "*",
"dotenv": "^8.2.0",
"italia-tslint-rules": "*",
"jest": "^24.8.0",
"modclean": "^3.0.0-beta.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.12.1",
"shx": "^0.3.2",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.1.0",
"typescript": "^3.7.0"
},
"dependencies": {
"@pagopa/io-spid-commons": "^6.1.0",
"@pagopa/ts-commons": "^9.1.0",
"fastify": "^3.15.0",
"fastify-cli": "2.10.0",
"fp-ts": "1.17.0",
"io-ts": "1.8.5",
"io-ts-types": "^0.4.7"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"moduleFileExtensions": [
"js",
"node",
"ts"
],
"preset": "ts-jest",
"testMatch": null
},
"resolutions": {
"fp-ts": "1.17.0"
}
}