-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 771 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
{
"name": "adding-data-persistence",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"test": "cross-env NODE_ENV=testing jest --verbose --runInBand --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BloomInstituteOfTechnology/web-sprint-challenge-adding-data-persistence.git"
},
"license": "ISC",
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "8.14.0",
"jest": "28.1.0",
"supertest": "6.2.3"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"knex": "^2.3.0",
"nodemon": "^2.0.20",
"sqlite3": "^5.1.2"
}
}