-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 844 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 844 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
{
"name": "node-api3-project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "cross-env NODE_ENV=testing jest --verbose --runInBand --silent",
"resetdb": "knex migrate:rollback && knex migrate:latest && knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BloomInstituteOfTechnology/node-api3-project.git"
},
"dependencies": {
"express": "^4.18.1",
"knex": "^2.0.0",
"sqlite3": "^5.0.8"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"jest": "^28.1.0",
"knex-cleaner": "^1.3.1",
"nodemon": "^2.0.16",
"supertest": "^6.2.3"
}
}