-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "bug-tracker-backend",
"version": "1.0.0",
"description": "This is the backend for our bug tracker application.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "cross-env DB_ENV=testing jest --watchAll --verbose --runInBand",
"migrate": "knex migrate:latest --knexfile knexfile.js",
"make": "knex migrate:make",
"up": "knex migrate:up",
"down": "knex migrate:down",
"rollback": "knex migrate:rollback",
"seeds": "knex seed:run --knexfile knexfile.js ",
"apidoc": "apidoc -i api -o apidoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imxande/Bug-Tracker-Backend.git"
},
"author": "Alejandro E. Rodriguez",
"license": "MIT",
"bugs": {
"url": "https://github.com/imxande/Bug-Tracker-Backend/issues"
},
"homepage": "https://github.com/imxande/Bug-Tracker-Backend#readme",
"dependencies": {
"@types/jest": "^27.5.1",
"apidoc": "^0.51.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"email-validator": "^2.0.4",
"express": "^4.17.3",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"knex": "^2.0.0",
"morgan": "^1.10.0",
"sqlite3": "^5.0.5"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"jest": "^28.1.0",
"nodemon": "^2.0.15",
"supertest": "^6.2.3"
},
"apidoc": {
"name": "Bug Tracker API Documentation",
"version": "1.0.0",
"description": "REST API documentation for the Bug Tracker express application",
"url": "http://localhost:4000",
"sampleUrl": "http://localhost:4000",
"template": {
"forceLanguage": "en"
}
}
}