-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.31 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
45
46
47
48
49
50
51
52
53
{
"name": "vault-express",
"version": "0.0.1",
"description": "A simply secure sign-up/sign-in implementation for web app",
"private": true,
"engines": {
"node": "8.11.3",
"npm": "6.4.0"
},
"scripts": {
"seed": "node seed.js",
"start": "nodemon server.js",
"eslint": "eslint .",
"test": "mocha --reporter spec",
"deploy": "git push heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VaultExpress/vault-express.git"
},
"keywords": [],
"author": "junyada100",
"license": "MIT",
"bugs": {
"url": "https://github.com/VaultExpress/vault-express/issues"
},
"homepage": "https://github.com/VaultExpress/vault-express#readme",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"helmet": "^3.13.0",
"lowdb": "^1.0.0",
"multer": "^1.3.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"serve-favicon": "^2.5.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-bytes": "^0.1.1",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3"
}
}