-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
131 lines (131 loc) · 3.91 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "lockessential",
"description": "A Secured Encrypted Personal Information Manager.",
"version": "1.1.1",
"meanjs-version": "0.5.0",
"private": true,
"author": "Md Kamrul Hasan Pulok",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hvpulok/my-manager"
},
"engines": {
"node": "8.11.3"
},
"scripts": {
"update": "npm update && npm prune && bower install --allow-root && bower prune --allow-root",
"clean": "rm -rf node_modules/ public/lib/",
"reinstall": "npm cache clean && npm run clean && npm install",
"prestart": "npm run build",
"start": "NODE_ENV='production' node server.js",
"build": "gulp prod-build",
"start:prod": "gulp prod",
"start:debug": "node-debug --web-host 0.0.0.0 server.js & gulp debug",
"gulp": "gulp",
"lint": "gulp lint",
"test": "gulp test",
"test:server": "gulp test:server",
"test:server:watch": "gulp test:server:watch",
"test:client": "gulp test:client",
"test:e2e": "gulp test:e2e",
"test:coverage": "gulp test:coverage",
"postinstall": "bower install --allow-root && bower prune --allow-root",
"generate-ssl-certs": "scripts/generate-ssl-certs.sh",
"dbBackup": "node mongodb-backup/backup"
},
"dependencies": {
"acl": "~0.4.9",
"async": "~2.0.1",
"body-parser": "~1.15.0",
"bower": "~1.7.7",
"chalk": "~1.1.1",
"compression": "~1.6.1",
"connect-flash": "~0.1.1",
"connect-mongo": "~1.3.2",
"cookie-parser": "~1.4.1",
"coveralls": "~2.11.6",
"crypto": "0.0.3",
"crypto-js": "^3.1.8",
"del": "^2.2.2",
"eslint": "~2.2.0",
"eslint-config-airbnb": "~6.0.2",
"express": "~4.14.0",
"express-hbs": "^1.0.2",
"express-session": "~1.14.1",
"file-stream-rotator": "~0.0.6",
"generate-password": "~1.2.0",
"glob": "~7.1.0",
"gulp": "~3.9.1",
"gulp-angular-templatecache": "~2.0.0",
"gulp-autoprefixer": "~3.1.0",
"gulp-concat": "~2.6.0",
"gulp-csslint": "~1.0.0",
"gulp-csso": "~2.0.0",
"gulp-eslint": "~3.0.1",
"gulp-imagemin": "~3.0.3",
"gulp-istanbul": "~1.1.1",
"gulp-jshint": "^2.0.4",
"gulp-less": "~3.1.0",
"gulp-load-plugins": "~1.3.0",
"gulp-mocha": "~3.0.1",
"gulp-ng-annotate": "~2.0.0",
"gulp-nodemon": "^2.2.1",
"gulp-protractor": "~3.0.0",
"gulp-refresh": "~1.1.0",
"gulp-rename": "~1.2.2",
"gulp-rev": "^7.1.2",
"gulp-sass": "^4.0.1",
"gulp-uglify": "~2.0.0",
"gulp-util": "~3.0.7",
"helmet": "~2.3.0",
"imagemin-pngquant": "~5.0.0",
"istanbul": "~0.4.2",
"jasmine-core": "~2.5.0",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"karma": "~1.3.0",
"karma-chrome-launcher": "~2.0.0",
"karma-coverage": "~1.1.1",
"karma-firefox-launcher": "~1.0.0",
"karma-jasmine": "~1.0.2",
"karma-ng-html2js-preprocessor": "~1.0.0",
"karma-phantomjs-launcher": "~1.0.2",
"lcov-result-merger": "~1.2.0",
"lodash": "~4.16.2",
"lusca": "~1.4.1",
"method-override": "~2.3.5",
"mocha": "~3.1.0",
"mock-fs": "~3.11.0",
"mongoose": "~4.6.2",
"morgan": "~1.7.0",
"multer": "~1.2.0",
"nodemailer": "~2.6.4",
"owasp-password-strength-test": "~1.3.0",
"passport": "~0.3.2",
"passport-facebook": "~2.1.0",
"passport-github": "~1.1.0",
"passport-google-oauth": "~1.0.0",
"passport-linkedin": "~1.0.0",
"passport-local": "~1.0.0",
"passport-paypal-openidconnect": "~0.1.1",
"passport-twitter": "~1.0.4",
"phantomjs-prebuilt": "~2.1.4",
"run-sequence": "~1.2.2",
"semver": "~5.3.0",
"serve-favicon": "~2.3.0",
"should": "~11.1.0",
"socket.io": "^1.4.8",
"supertest": "~2.0.0",
"validator": "~6.0.0",
"winston": "^2.2.0",
"wiredep": "~4.0.0"
},
"devDependencies": {
"mongodb-backup": "^1.6.9",
"mongodb-restore": "^1.6.2"
},
"optionalDependencies": {
"node-inspector": "~0.12.8"
}
}