-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "node-login",
"version": "1.0.0",
"description": "Base framework for login pages",
"main": "bin/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-sass": "node-sass public/sass/style.scss public/css/style.css",
"watch-scss": "nodemon --config nodemon_scss.json",
"watch": "nodemon --config nodemon_app.json bin/server.js -- --use_strict & npm run watch-scss",
"start": "npm run watch"
},
"repository": {
"type": "git",
"url": "http://git.jukn.de/opensource/login-frame.git"
},
"keywords": [
"node",
"js",
"javascript",
"login",
"framework"
],
"author": "Julian Kern <[email protected]> (https://juliankern.com)",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"chalk": "^2.0.1",
"concat": "^1.0.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-fileupload": "^0.1.4",
"express-session": "^1.15.3",
"glob": "^7.1.2",
"gravatar": "^1.6.0",
"i18n": "^0.8.3",
"jimp": "^0.2.28",
"moment": "^2.18.1",
"mongoose": "^4.11.1",
"node-sass": "^4.5.3",
"nodemailer": "^4.0.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-rc.2",
"randomstring": "^1.1.5"
}
}