-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (40 loc) · 1.21 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": "lendsqr-be-test",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"start:prod": "NODE_ENV=production node ./dist/index.js",
"start:dev": "clear && NODE_ENV=development nodemon source/index.ts",
"migrate:latest:dev": "NODE_ENV=development knex --knexfile source/database/knexfile.ts migrate:latest",
"migrate:latest:prod": "NODE_ENV=production knex --knexfile source/database/knexfile.ts migrate:latest"
},
"author": "Ndujekwu Ugochukwu Peter",
"license": "MIT",
"devDependencies": {},
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mysql": "^2.18.1",
"nodemailer": "^6.9.13",
"winston": "^3.13.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.30",
"@types/nodemailer": "^6.4.14",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}