-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 857 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
{
"name": "u-develop-it",
"version": "1.0.0",
"description": "Application using MySQL that will hold databases about employee information",
"main": "server.js",
"scripts": {
"test": "jest",
"migrate": "sqlite3 db/election.db < db/schema.sql",
"seed": "sqlite3 db/election.db < db/seeds.sql",
"db": "sqlite3 db/election.db",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolewallace09/u-develop-it.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicolewallace09/u-develop-it/issues"
},
"homepage": "https://github.com/nicolewallace09/u-develop-it#readme",
"dependencies": {
"express": "^4.17.1",
"sqlite": "^4.0.9",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"jest": "^26.0.1"
}
}