-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "clean-node-api",
"version": "2.2.0",
"main": "index.js",
"author": "Silas Augusto <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"up": "npm run build && docker-compose up",
"down": "docker-compose down",
"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 test:ci && coveralls < coverage/lcov.info"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.7",
"@types/node": "^14.14.37",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"coveralls": "^3.1.0",
"eslint": "^7.23.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"mockdate": "^3.0.5",
"supertest": "^6.1.3",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^3.6.5",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"swagger-ui-express": "^4.1.6",
"validator": "^13.5.2"
},
"engines": {
"node": "12.x"
},
"_moduleAliases": {
"@": "dist"
}
}