-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --silent --passWithNoTests",
"test:all": "jest",
"test:unit": "npm test -- -c jest.unit.config.js",
"test:int": "npm test -- -c jest.int.config.js",
"test:coverage": "npm test --coverage",
"test:staged": "jest --bail --findRelatedTests --coverage",
"prepare": "husky install",
"start": "tsnd --transpile-only --respawn --ignore-watch node_modules src/main/server/server.ts",
"start2": "ts-node-dev"
},
"keywords": [],
"author": "Carlos Jaramillo <cejaramillof@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.19",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"@types/validator": "13.7.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"git-commit-msg-linter": "^4.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"express": "^4.17.3",
"fast-glob": "^3.2.11",
"mongoose": "^6.2.4",
"nodemailer": "^6.7.2",
"validator": "13.7.0"
}
}