forked from bloominstituteoftechnology/node-api2-guided
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 658 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 658 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
{
"name": "node-api2-guided",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"ketchup": "git fetch && git reset --hard origin/lecture",
"resetdb": "knex migrate:rollback && knex migrate:latest && knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/node-api2-guided.git"
},
"devDependencies": {
"eslint": "^7.32.0",
"nodemon": "^2.0.12"
},
"dependencies": {
"express": "^4.17.1",
"knex": "^0.95.10",
"sqlite3": "^5.0.2"
}
}