-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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": "code-challange-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/client": "^6.3.0",
"@sendgrid/mail": "^6.3.1",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/mongoose": "^5.3.26",
"@types/node-schedule": "^1.2.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"moment": "^2.24.0",
"mongoose": "^5.5.1",
"node-schedule": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"mocha": "^6.1.3",
"sinon": "^7.3.1",
"ts-node": "^8.0.3",
"tsc-watch": "^2.1.2",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
}