-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
60
61
62
{
"name": "wtc-backend",
"version": "1.0.0",
"description": "Find where to code nearby",
"main": "index.js",
"scripts": {
"start": "node cluster.js",
"server": "nodemon index.js",
"test": "cross-env DB_ENV=testing jest --verbose --forceExit --coverage --detectOpenHandles",
"watch": "cross-env DB_ENV=testing jest --verbose --watch",
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"rollback": "knex migrate:rollback --all",
"reset-db": "npm-run-all rollback migrate seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/where-to-code/wtc-backend.git"
},
"keywords": [
"places",
"code",
"map",
"find",
"where-to-code"
],
"author": "where-to-code team",
"license": "MIT",
"bugs": {
"url": "https://github.com/where-to-code/wtc-backend/issues"
},
"homepage": "https://github.com/where-to-code/wtc-backend#readme",
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.20.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.2",
"morgan": "^1.9.1",
"node-pre-gyp": "^0.13.0",
"nodemailer": "^6.3.0",
"nodemailer-express-handlebars": "^3.1.0",
"npm": "^6.11.2",
"npm-run-all": "^4.1.5",
"pg": "^7.12.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}