-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (41 loc) · 906 Bytes
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": "@ushaganeshdurai/sql-learning-api",
"version": "1.0.0",
"description": "Learn SQL by interacting with a live Express.js + MySQL API.",
"main": "index.js",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ushaganeshdurai/sql-learning-api.git"
},
"directories": {
"lib": "lib",
"db": "db",
"utils": "utils"
},
"dependencies": {
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"mysql2": "^3.14.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"sql-practice",
"sql",
"mysql"
],
"author": "Usha Nandhini G",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^9.7.0"
}
}