-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "apibackend-ddd",
"version": "1.0.0",
"description": "API Backend DDD in NodeJS\r ## Getting Started",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"dev": "nodemon ./src/server.ts",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|)\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psirdev/apibackend-ddd.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/psirdev/apibackend-ddd/issues"
},
"homepage": "https://github.com/psirdev/apibackend-ddd#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.0.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@types/supertest": "^2.0.12",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}