-
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.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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": "base-api",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "env-cmd -f ./config/dev.env nodemon --watch 'src/' --exec 'ts-node src/main/server.ts' -e ts"
},
"keywords": [],
"author": "Leonidas Lima",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/convict": "^5.2.1",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"env-cmd": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-boundaries": "^1.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"git-commit-msg-linter": "^2.7.0",
"husky": "^4.3.0",
"install-peerdeps": "^2.0.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"sucrase": "^3.16.0",
"supertest": "^4.0.2",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/nodemailer": "^6.4.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.3",
"nodemailer": "^6.4.15",
"npm": "^6.14.8",
"ts-node": "^9.1.1"
},
"engines": {
"node": "12.12.0"
}
}