-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 KB
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
{
"name": "survey-clean-api",
"version": "2.2.0",
"main": "dist/main/server.ts",
"author": "Leonardo Albuquerque <leeodesign@hotmail.com>",
"license": "MIT",
"scripts": {
"start": "nodemon -L --watch ./dist ./dist/main/server.js",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:verbose": "yarn test --watch --runInBand",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"up": "yarn build && docker-compose up",
"down": "docker-compose down",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info"
},
"keywords": [],
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.7.1",
"coveralls": "^3.1.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"git-commit-msg-linter": "^4.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"mockdate": "^3.0.5",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^4.4.1",
"nodemon": "^2.0.15",
"validator": "^13.7.0"
},
"_moduleAliases": {
"@": "dist"
}
}