-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
43
44
45
46
47
48
49
50
51
52
53
{
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mongodb": "^4.0.7",
"@types/mysql": "^2.15.21",
"@types/node": "^18.0.1",
"@types/sequelize": "^4.28.13",
"apicache": "^1.6.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.2.0",
"i": "^0.3.7",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongodb": "^4.16.0",
"mongoose": "^6.7.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.16",
"npm": "^8.19.2",
"paystack": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"name": "my-sql-crud",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"postinstall": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\"",
"build": "rimraf ./dist && tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/apicache": "^1.6.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/paystack": "^2.0.1",
"ts-node-dev": "^2.0.0"
}
}