forked from Sword-Anchor/SnapIt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.58 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
{
"name": "snapit",
"version": "1.0.0",
"main": "server/app.js",
"dependencies": {
"body-parser": "^1.12.4",
"composable-middleware": "*",
"compression": "^1.5.0",
"connect-mongo": "^0.8.1",
"cookie-parser": "*",
"ejs": "*",
"errorhandler": "*",
"express": "^4.12.4",
"express-jwt": "^3.0.1",
"express-session": "^1.11.3",
"jsonwebtoken": "*",
"lodash": "^3.9.3",
"method-override": "^2.3.3",
"mongoose": "^4.0.5",
"morgan": "*",
"nodemailer": "*",
"passport": "*",
"passport-facebook": "latest",
"passport-local": "^1.0.0",
"passport-twitter": "latest",
"path": "*",
"serve-favicon": "*",
"socket.io": "*",
"socket.io-client": "*",
"socketio-jwt": "^4.2.0"
},
"devDependencies": {
"connect-livereload": "^0.5.x",
"grunt": "*",
"grunt-angular-templates": "*",
"grunt-asset-injector": "*",
"grunt-autoprefixer": "*",
"grunt-build-control": "DaftMonk/grunt-build-control",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-clean": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-htmlmin": "*",
"grunt-contrib-imagemin": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-dom-munger": "*",
"grunt-env": "*",
"grunt-express-server": "^0.5.1g",
"grunt-google-cdn": "*",
"grunt-karma": "*",
"grunt-mocha-test": "*",
"grunt-newer": "*",
"grunt-ng-annotate": "*",
"grunt-node-inspector": "*",
"grunt-nodemon": "*",
"grunt-open": "*",
"grunt-protractor-runner": "*",
"grunt-rev": "*",
"grunt-svgmin": "*",
"grunt-usemin": "*",
"grunt-wiredep": "*",
"jit-grunt": "*",
"jshint-stylish": "*",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-coffee-preprocessor": "*",
"karma-firefox-launcher": "*",
"karma-html2js-preprocessor": "*",
"karma-jade-preprocessor": "*",
"karma-jasmine": "latest",
"karma-ng-html2js-preprocessor": "*",
"karma-ng-jade2js-preprocessor": "*",
"karma-ng-scenario": "*",
"karma-phantomjs-launcher": "*",
"karma-requirejs": "*",
"karma-script-launcher": "*",
"open": "*",
"requirejs": "*",
"should": "*",
"supertest": "*",
"time-grunt": "*"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "node server/app.js",
"test": "grunt test",
"update-webdriver": "node node_modules/grunt-protractor-runner/node_modules/protractor/bin/webdriver-manager update"
},
"private": true
}