-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "api-email",
"version": "0.0.1",
"description": "API REST to send emails",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"jest": "NODE_ENV=test && jest",
"test": "docker-compose run app npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CollabCodeTech/collabcodetraining-api-email.git"
},
"author": "CollabCode",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/CollabCodeTech/collabcodetraining-api-email/issues"
},
"homepage": "https://github.com/CollabCodeTech/collabcodetraining-api-email#readme",
"devDependencies": {
"@sucrase/jest-plugin": "^2.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"sucrase": "^3.10.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"faker": "^4.1.0",
"fastify": "^2.10.0"
},
"jest": {
"transform": {
".(js)": "@sucrase/jest-plugin"
}
}
}