-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "devdesk-queue_backend",
"version": "1.0.0",
"description": "DevDesk Queue backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "cross-env NODE_ENV=testing jest --watch --verbose",
"server": "nodemon",
"migrate": "knex migrate:latest",
"migrate:test": "cross-env NODE_ENV=testing knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devdesk-queue/node-back-end.git"
},
"author": "",
"license": "ISC",
"engines": {
"node": "10.13.0"
},
"bugs": {
"url": "https://github.com/devdesk-queue/node-back-end/issues"
},
"homepage": "https://github.com/devdesk-queue/node-back-end#readme",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"config": "^3.1.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"crypto": "^1.0.1",
"debug": "^4.1.1",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"express-winston": "^3.1.0",
"helmet": "^3.16.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"knex-cleaner": "^1.1.4",
"pg": "^7.9.0",
"querystring": "^0.2.0",
"sqlite3": "^4.0.6",
"tsscmp": "^1.0.6",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2"
}
}