-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
{
"name": "devdeskqueue-backend",
"version": "1.0.0",
"description": "RESTful API for devdeskqueue",
"main": "index.js",
"scripts": {
"format": "prettier \"src/**/*.{js,html}\" --write",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"test": "cross-env DB_ENV=testing jest ./routes --watchAll --verbose",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devdeskqueue/Back-End.git"
},
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.0",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"sqlite3": "^4.0.9"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^23.6.0",
"knex-cleaner": "^1.2.1",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"supertest": "^3.3.0"
},
"author": "Louis Magdaleno & Wilfred Morgan",
"license": "MIT",
"bugs": {
"url": "https://github.com/devdeskqueue/Back-End/issues"
},
"homepage": "https://github.com/devdeskqueue/Back-End#readme"
}