-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 851 Bytes
/
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
{
"name": "12-employee-tracker",
"version": "1.0.0",
"description": "A command-line application built from scratch to manage a company's employee database, using Node.js, Inquirer, and MySQL.",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"seed": "node src/lib/seed.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faisal244/employee-tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/faisal244/employee-tracker/issues"
},
"homepage": "https://github.com/faisal244/employee-tracker#readme",
"dependencies": {
"dotenv": "^16.0.1",
"figlet": "^1.5.2",
"gradient-string": "^2.0.1",
"inquirer": "^8.0.0",
"mysql2": "^2.3.3",
"table": "^6.8.0"
},
"devDependencies": {
"nodemon": "^2.0.18"
}
}