-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "clean-node-api",
"version": "2.2.0",
"main": "index.js",
"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": "yarn build && sudo docker-compose up",
"down": "sudo docker-compose down",
"lint": "eslint 'src/**'",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"test:coveralls": "yarn test:ci && coveralls < coverage/lcov.info"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/mongodb": "^3.6.3",
"@types/node": "^16.9.1",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"coveralls": "^3.1.1",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-unused-imports": "^1.1.4",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.2",
"jest": "^27.1.1",
"lint-staged": "^11.1.2",
"mockdate": "^3.0.5",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^3.6.3",
"nodemon": "^2.0.12",
"validator": "^13.6.0"
},
"_moduleAliases": {
"@": "dist"
}
}