-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.42 KB
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
{
"name": "candidate-sse-take-home-challenge-192",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"dev": "tsnd --transpile-only --respawn --rs --ignore-watch node_modules -r tsconfig-paths/register -r dotenv/config src/application/application.bootstrap.ts",
"test:unit": "jest --verbose --watchAll",
"test:integration": "jest --runInBand --verbose --watchAll --config ./jest.config.integration.ts",
"test:e2e": "jest --runInBand --verbose --watchAll --config ./jest.config.e2e.ts",
"test:cov": "jest --coverage",
"lint": "eslint \"{src,tests}/**/*.ts\" --fix"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"dotenv": "^16.1.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sql": "^2.3.2",
"jest": "^29.5.0",
"jest-cucumber": "^3.0.1",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"express": "^4.18.2",
"glob": "^10.2.6",
"pg": "^8.11.2",
"pino": "^8.14.1",
"sql-template-strings": "^2.2.2"
}
}