-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "expence-tracker",
"version": "1.0.0",
"description": "expence tracker application with nodejs (typescript) express ",
"main": "dist/app.js",
"repository": "https://github.com/onifs10/expenceTracker",
"author": "Okafor et Onifade",
"license": "MIT",
"private": false,
"scripts": {
"start": "node --inspect=5500 -r ts-node/register ./src/app.ts",
"start:watch": "nodemon",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/joi": "^17.2.3",
"nodemon": "^2.0.14",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^16.11.6",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.25.2",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.2",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.2.0",
"ts-node": "^10.4.0"
}
}