-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
41
42
43
44
{
"name": "express-authentication",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint:js": "node_modules/eslint/bin/eslint.js ./ ./**/*.js --fix; exit 0",
"lint:css": "node_modules/csslint/cli.js public/css/; exit 0",
"test": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R nyan"
},
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^6.0.4",
"chai": "^3.5.0",
"csslint": "^0.10.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"supertest": "^1.2.0"
},
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.15.1",
"connect-flash": "^0.1.1",
"dotenv": "^2.0.0",
"ejs": "^2.4.2",
"express": "^4.13.4",
"express-ejs-layouts": "^2.1.0",
"express-session": "^1.14.2",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^5.0.0",
"pg-hstore": "^2.3.2",
"sequelize": "^3.23.3",
"sequelize-cli": "^2.5.1"
}
}