-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "mailtracker",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "node main.js",
"jest": "jest --config=jest.config.js",
"build": "npm run build:prod",
"tscHelp": "tsc --help",
"build:prod": "tsc -p ./tsconfig.prod.json"
},
"author": "jwan karo",
"license": "ISC",
"description": "",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/module-alias": "^2.0.1",
"@types/mongodb": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"module-alias": "^2.2.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.1.4"
}
}