-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 KB
/
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": "express-dummy",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"dev": "node_modules/.bin/nodemon src/app.js | node_modules/.bin/bunyan",
"test": "node_modules/.bin/mocha src/**/*.test.js",
"test:watch": "npm test -- --watch",
"test:reporter": "npm test -- --reporter mocha-junit-reporter",
"test:eslint": "node_modules/.bin/eslint src/**/*.js"
},
"author": "Onur Laru",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.1",
"bunyan": "^1.8.9",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"express-session": "^1.15.2",
"mongoose": "^4.9.3",
"nconf": "^0.8.4",
"nodemailer": "^4.0.1",
"nodemailer-smtp-transport": "^2.7.4"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"mocha": "^3.4.2",
"mocha-junit-reporter": "^1.13.0",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
}
}