-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "employee-management-portal",
"version": "1.0.0",
"description": "Node.js CLI application that interfaces with a SQL database using MYSQL2, collects user employee information using inquirer npm package and stores that information to the database. The database can then be queried to return stored employee information that is formatted using the the console.table package.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderjake91/employee-management-portal.git"
},
"keywords": [
"Node.js",
"MySQL2",
"SQL"
],
"author": "coderjake91",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderjake91/employee-management-portal/issues"
},
"homepage": "https://github.com/coderjake91/employee-management-portal#readme",
"dependencies": {
"ascii-art": "^2.8.5",
"console.table": "^0.10.0",
"inquirer": "^8.2.0",
"inquirer-search-list": "^1.2.6",
"mysql2": "^2.3.3"
},
"devDependencies": {
"dotenv": "^10.0.0"
}
}