-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
47
48
49
50
51
{
"name": "Lendsqr",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --no-cache",
"build": "tsc -p .",
"dev": "nodemon --legacy-watch --watch './src/**/*.ts' --exec 'ts-node' ./src/index.ts",
"start": "node ./build/index.js",
"knex:migrate": "npx knex migrate:latest --knexfile ./src/knexfile.ts",
"knex:rollback": "npx knex migrate:rollback --knexfile ./src/knexfile.ts"
},
"author": "Ifeoluwa Olubo",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.4.0",
"express-validator": "^6.14.2",
"helmet": "^5.1.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.2.0",
"mysql": "^2.18.1",
"nanoid": "^3.1.30",
"sqlite3": "^5.0.11",
"winston": "^3.8.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"jest": "^28.1.1",
"nodemon": "^2.0.18",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}