-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 917 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
{
"name": "ifba-server",
"version": "1.0.0",
"description": "ifba-server",
"main": "server/index.js",
"scripts": {
"test": "knex migrate:latest && mocha --exit ./test/index.test.js",
"start": "node index.js",
"start:watch": "nodemon index.js",
"local": "./node_modules/.bin/nodemon --ignore public/",
"knex": "./node_modules/.bin/knex"
},
"keywords": [],
"author": "Ian Duke",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"cookie-session": "^1.3.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-flash": "0.0.2",
"knex": "^0.19.5",
"knex-logger": "^0.1.0",
"morgan": "^1.9.1",
"nodemailer": "^6.4.16",
"pg": "^7.4.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4"
}
}