-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "login-express-session",
"version": "1.1.0",
"description": "A simple example of a server rendered app that enables login, logout and secure routes using node, express, express-session, pug and bootstrap.",
"scripts": {
"start": "node ./bin/www",
"copy-files-from-to": "copy-files-from-to"
},
"copyFiles": [
{
"from": "./node_modules/bootstrap/dist/**/*",
"to": "./public/3rdparty/bootstrap/dist/"
}
],
"copyFilesSettings": {
"whenFileExists": "notify-about-available-change"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rkristelijn/login.git"
},
"keywords": [
"express-session",
"login",
"node",
"express",
"example",
"bootstrap",
"pug"
],
"author": "Remi Kristelijn",
"license": "MIT",
"bugs": {
"url": "https://github.com/rkristelijn/login/issues"
},
"homepage": "https://github.com/rkristelijn/login#readme",
"dependencies": {
"bootstrap": "^4.3.1",
"cookie-parser": "~1.4.4",
"express": "~4.16.1",
"express-session": "^1.16.2",
"http-errors": "~1.6.3",
"pug": "^2.0.4"
},
"devDependencies": {
"copy-files-from-to": "2.0.2",
"jquery": "^3.4.1",
"popper.js": "^1.15.0"
}
}