-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 818 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 818 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
{
"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",
"seed": "knex seed:run",
"test": "cross-env NODE_ENV=testing jest --watchAll --verbose --runInBand --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/web-sprint-challenge-adding-data-persistence.git"
},
"license": "ISC",
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "7.28.0",
"jest": "26.6.3",
"supertest": "6.1.3"
},
"dependencies": {
"@bgoonz11/repoutils": "^1.0.5",
"express": "^4.17.1",
"knex": "^0.95.7",
"knex-cleaner": "^1.3.1",
"sqlite3": "^5.0.2"
}
}