-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "express-ts-ddd",
"version": "1.0.0",
"description": "Express-TS-DDD REST API",
"main": "bin/index.ts",
"author": "Gonzalo Plaza <gonzalo@verize.com>",
"license": "MIT",
"private": false,
"keywords": [
"nodejs",
"typescript",
"express",
"ddd",
"prisma",
"docker",
"eslint"
],
"scripts": {
"dev": "nodemon",
"start": "ts-node ./bin/index.ts",
"build": "rm -rf ./dist/ && tsc -p .",
"studio": "prisma studio",
"test": "jest --config jest.config.js --runInBand --no-cache --detectOpenHandles",
"coverage": "jest --coverage --detectOpenHandles --forceExit"
},
"prisma": {
"schema": "prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^4.9.0",
"add": "^2.0.6",
"amazon-cognito-identity-js": "^6.1.2",
"app-root-path": "^3.1.0",
"awilix": "^8.0.0",
"axios": "^1.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.3",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"jwk-to-pem": "^2.0.5",
"morgan": "^1.10.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^16.18.11",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"crypto": "^1.0.1",
"eslint": "^8.33.0",
"jest": "^29.4.1",
"jest-mock-extended": "^3.0.1",
"jest-ts-auto-mock": "^2.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"prisma": "^4.9.0",
"ts-auto-mock": "^3.6.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5"
}
}