-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "timer2ticket_api",
"version": "1.7.0",
"description": "User service middleware for T2T applications.",
"main": "dist/src/app.js",
"scripts": {
"start": "tsc-watch --project . --outDir ./dist --onSuccess \"nodemon ./dist/src/app.js\"",
"start-test": "npm run build && node ./dist/src/app.js",
"test": "mocha -r ts-node/register './test/**/*.spec.ts'",
"build": "tsc --build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.76.0",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.15",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.2",
"@types/mongodb": "^3.6.8",
"@types/node-cron": "^2.0.3",
"@types/nodemailer": "^6.4.4",
"@types/superagent": "^4.1.10",
"anyid": "^1.0.7",
"bcrypt": "^5.0.1",
"chai": "^4.3.4",
"class-validator": "^0.13.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.2",
"mongodb": "^3.6.4",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.0",
"superagent": "^6.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"tsc-watch": "^4.2.9"
}
}