-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.57 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
80
81
82
83
{
"name": "clean-ts-api",
"version": "2.5.5",
"description": "NodeJs Rest API using TDD, Clean Architecture and Typescript",
"keywords": [],
"homepage": "https://github.com/luizhp/clean-ts-api",
"author": ".luizhp",
"license": "GPL-3.0-or-later",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "https://github.com/luizhp/clean-ts-api"
},
"scripts": {
"start": "node dist/main/server.js",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig-build.json",
"postbuild": "copyfiles -u 1 public/**/* dist/static",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"preup": "npm run build",
"up": "docker-compose up -d",
"down": "docker-compose down",
"check": "npm-check -s -u",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.5",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.18",
"@types/node": "^14.0.1",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^4.1.2",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"copyfiles": "^2.3.0",
"coveralls": "^3.0.11",
"eslint": "^7.6.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"git-commit-msg-linter": "^2.4.2",
"husky": "^4.2.3",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"mockdate": "^3.0.2",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo": "^0.1.0",
"mongo-round": "^1.0.0",
"nodemon": "^2.0.4",
"swagger-ui-express": "^4.1.4",
"validator": "^13.0.0"
},
"engines": {
"node": "12.x"
},
"_moduleAliases": {
"@": "dist"
}
}