-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.42 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
{
"name": "node-ddd-template",
"version": "1.0.0",
"description": "Node template for building apps using DDD",
"main": "index.js",
"scripts": {
"prisma:migrate:testdb-setup": "dotenv -e .env.test -- npx prisma migrate reset --force",
"test": "npm run prisma:migrate:testdb-setup && tsx --env-file=.env.test --test $(glob tests/**/*.test.ts)",
"dev": "nodemon --exec tsx --env-file=.env src/index.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"start": "tsx --env-file=.env dist/index.js",
"serve": "npm run build && npm run start",
"docker:build": "docker build -t node-ddd-template .",
"docker:run": "docker run -it --rm --name node-ddd-template --env-file=.env -p 4300:4300 node-ddd-template",
"docker:start": "npm run docker:build && npm run docker:run",
"prisma:format": "npx prisma format",
"prisma:migrate:dev": "npx prisma migrate dev",
"prisma:migrate:deploy": "npx prisma migrate deploy",
"prisma:generate": "npx prisma generate",
"sq": "sequelize-cli",
"lint": "eslint --ignore-path .gitignore --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts)\""
},
"repository": {
"type": "git",
"url": "[email protected]:toritsejuFO/node-ddd-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.19.1",
"awilix": "^6.0.0",
"express": "^4.17.2",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.2",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"types-ddd": "^3.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0-alpha.3",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.2",
"@types/nodemailer": "^6.4.15",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.4.2",
"nodemon": "^2.0.15",
"prisma": "^5.19.1",
"rimraf": "^5.0.7",
"sequelize-cli": "^6.3.0",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0",
"tsx": "^4.15.6",
"typescript": "^5.4.5"
}
}