-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.99 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
{
"name": "insurance-api",
"version": "1.0.0",
"main": "index.js",
"author": "ubialimv <[email protected]>",
"license": "MIT",
"scripts": {
"prettier": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"dev": "ts-node src/server.ts",
"start": "ts-node dist/src/server.js",
"start:prod": "node dist/src/server.js",
"test:unit": "jest --config ./jest/jest.config.js --detectOpenHandles",
"test:unit:cov": "yarn test:unit --coverage",
"test:mutation": "stryker run",
"test:component": "NODE_ENV=test jest --config ./jest/jest.component-config.js --runInBand --verbose --detectOpenHandles",
"rmDist": "rm -rf dist",
"copy-contracts": "mkdir -p dist/src/application/contracts && cp src/application/contracts/*.yaml dist/src/application/contracts",
"build": "yarn run rmDist; tsc -p .;yarn run copy-contracts"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0",
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/jest-runner": "^5.6.1",
"@stryker-mutator/typescript-checker": "^5.6.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.21",
"@types/pino": "^7.0.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-openapi-validator": "^4.13.6",
"express-prom-bundle": "^6.4.1",
"js-yaml": "^4.1.0",
"pino": "^7.9.2",
"pino-pretty": "^7.6.0",
"prom-client": "^14.0.1",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2"
}
}