-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.94 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
{
"name": "taxi24-code-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn src/app.ts",
"seed": "ts-node-dev seeds/mongodb/index.ts",
"test": "jest --passWithNoTests --no-cache --logHeapUsage",
"test:unit": "npm run test -- --config jest.config.units.ts -- /tests/unit",
"test:integration": "npm run test -- /tests/integration",
"migration:generate": "typeorm-ts-node-commonjs -d ./src/modules/shared/database/infrastructure/postgres/data-source.ts migration:generate ./src/modules/shared/database/infrastructure/postgres/migrations/default",
"migration:run": "typeorm-ts-node-commonjs -d ./src/modules/shared/database/infrastructure/postgres/data-source.ts migration:run",
"postgres:seed": "typeorm-extension seed -d ./src/modules/shared/database/infrastructure/postgres/data-source.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@ngneat/falso": "^6.4.0",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.2.4",
"@types/uuid": "^9.0.1",
"@types/uuid-validate": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"docker-compose": "^0.24.1",
"eslint": "^8.41.0",
"is-port-reachable": "^4.0.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.4",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@apollo/server": "^4.7.3",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"graphql": "^16.6.0",
"mongoose": "^7.2.1",
"pg": "^8.11.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.16",
"typeorm-extension": "^2.8.1",
"uuid": "^9.0.0",
"uuid-validate": "^0.0.3"
}
}