-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 961 Bytes
/
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
{
"name": "levelwater-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha --recursive",
"heroku-postbuild": "knex migrate:latest",
"knex": "knex",
"start": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-as-promised": "^1.1.0",
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"express": "^4.15.2",
"joi": "^10.4.1",
"jsonwebtoken": "^7.3.0",
"knex": "^0.12.9",
"mocha": "^3.3.0",
"morgan": "^1.8.1",
"mysql": "^2.13.0",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"supertest": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
}
}