-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 973 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
34
35
36
{
"name": "employee-tracker",
"version": "1.0.0",
"description": "A solution for managing a company's employees using Node, Inquirer, and MySQL.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "mysql db/employees.db < db/schema.sql",
"seed": "mysql db/employees.db < db/seeds.sql",
"db": "mysql db/employees.db",
"watch": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katsign/employee-tracker.git"
},
"keywords": [
"node",
"mysql",
"inquirer",
"employee-tracker"
],
"author": "katsign",
"license": "MIT",
"bugs": {
"url": "https://github.com/katsign/employee-tracker/issues"
},
"homepage": "https://github.com/katsign/employee-tracker#readme",
"dependencies": {
"chalk": "^4.1.0",
"console.table": "^0.10.0",
"inquirer": "^8.0.0",
"mysql": "^2.18.1"
}
}