-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 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
{
"name": "hackerbay",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"dev": "NODE_ENV=development nodemon index.js",
"start": "node index.js",
"test": "nyc mocha --recursive",
"test:all": "NODE_ENV=test nyc mocha --recursive --watch",
"test:unit": "NODE_ENV=test mocha './test/unit/' --recursive --watch",
"test:integration": "NODE_ENV=test mocha './test/integration/' --recursive --watch",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docker:dev:run": "docker-compose -f docker-compose.yml -f dc-development.yml up --build",
"docker:dev:stop": "docker-compose -f docker-compose.yml -f dc-development.yml down -v",
"docker:dev:test": "docker-compose -f docker-compose.yml -f dc-development.yml run -e NODE_ENV=test backend npm test"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"cron": "^1.5.0",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"joi": "^14.0.0",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"normalize-url": "^3.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.38.0",
"twilio": "^3.24.0",
"url-parse": "^1.4.3",
"wait-on": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^3.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^5.2.0",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.18.7",
"nyc": "^13.0.1",
"prettier": "^1.14.2",
"sinon": "^6.2.0",
"supertest": "^3.3.0"
}
}