-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 KB
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
{
"name": "mean-stack-template",
"version": "1.0.0",
"description": "This is bare-bones MEAN stack template that I use when scaffolding out new apps",
"main": "server/app.js",
"scripts": {
"test": "grunt test",
"start": "node server/app.js"
},
"author": "John Bower - john@industrialassets.co.uk",
"license": "ISC",
"dependencies": {
"body-parser": "~1.5.0",
"composable-middleware": "^0.3.0",
"compression": "~1.0.1",
"connect-mongo": "^0.4.1",
"cookie-parser": "~1.0.1",
"ejs": "~0.8.4",
"errorhandler": "~1.0.0",
"express": "~4.0.0",
"express-jwt": "^0.1.3",
"express-session": "~1.0.2",
"jsonwebtoken": "^0.3.0",
"lodash": "^3.0.1",
"method-override": "~1.0.0",
"mongoose": "~3.8.8",
"morgan": "~1.0.0",
"serve-favicon": "~2.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"connect-livereload": "^0.5.3",
"grunt": "^0.4.5",
"grunt-angular-templates": "^0.5.7",
"grunt-autoprefixer": "^3.0.3",
"grunt-build-control": "^0.6.1",
"grunt-concurrent": "^2.1.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-imagemin": "^1.0.0",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-env": "~0.4.1",
"grunt-express-server": "^0.5.1",
"grunt-google-cdn": "^0.4.3",
"grunt-injector": "^0.6.1",
"grunt-karma": "^0.12.1",
"grunt-mocha-test": "^0.12.7",
"grunt-newer": "^1.1.1",
"grunt-ng-annotate": "^1.0.1",
"grunt-open": "^0.2.3",
"grunt-rev": "^0.1.0",
"grunt-svgmin": "^3.1.0",
"grunt-usemin": "^3.1.1",
"grunt-wiredep": "^2.0.0",
"jasmine": "^2.3.2",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-coffee-preprocessor": "^0.3.0",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jasmine": "^0.3.6",
"karma-mocha": "^0.2.1",
"karma-ng-html2js-preprocessor": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"load-grunt-tasks": "^3.3.0",
"mocha": "^2.3.4",
"path": "^0.12.7",
"phantomjs": "^1.9.18",
"should": "^7.1.1",
"supertest": "^1.1.0"
}
}