-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.54 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
{
"name": "clean-node-api",
"version": "2.5.5",
"main": "index.js",
"author": "Marcos Corsi <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig-build.json",
"postbuild": "copyfiles -u 1 public/**/* dist/static",
"build:debug": "tsc -w",
"start": "node dist/main/server.js",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules src/main/server.ts",
"up": "yarn build && docker-compose up -d",
"down": "docker-compose down",
"test": "jest --silent --noStackTrace --passWithNoTests --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js ",
"test:watch": "yarn test --watch",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"test:coveralls": "yarn test:ci && coveralls < coverage/lcov.info"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@shelf/jest-mongodb": "^1.2.2",
"@types/bcrypt": "^3.0.0",
"@types/express": "4.17.7",
"@types/jest": "^26.0.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.25",
"@types/node": "^14.0.27",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"copyfiles": "^2.3.0",
"coveralls": "^3.1.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"mockdate": "^3.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
},
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^3.6.0",
"nodemon": "^2.0.4",
"swagger-ui-express": "^4.1.4",
"validator": "^13.1.1"
},
"engines": {
"node": "12.x"
},
"_moduleAliases": {
"@": "dist"
}
}