-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
79 lines (79 loc) · 2.29 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
76
77
78
79
{
"name": "simple-blog-application",
"version": "1.0.0",
"description": "",
"main": "dist/main/server.js",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"build:watch": "npm run build -- --watch",
"dev": "nodemon -L --watch ./dist ./dist/main/server.js",
"up": "concurrently --kill-others-on-fail \"npm run build:watch\" \"docker-compose up\"",
"down": "docker-compose down",
"test": "jest --passWithNoTests --runInBand",
"test:staged": "npm run test -- --findRelatedTests",
"test:ci": "npm run test -- --coverage",
"lint": "eslint --ignore-path .gitignore --ext .ts --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyarleniber/simple-blog-application.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dyarleniber/simple-blog-application/issues"
},
"homepage": "https://github.com/dyarleniber/simple-blog-application#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.8",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"concurrently": "^7.0.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^4.3.0",
"validator": "^13.7.0"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run test:staged"
]
},
"engines": {
"node": "14.x"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@application": "dist/application",
"@infra": "dist/infra",
"@main": "dist/main"
}
}