-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.58 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
{
"name": "meanmarkdown",
"private": true,
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"chai": "^4.1.1",
"concurrently": "^3.5.0",
"cpx": "^1.5.0",
"del": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"grunt": "^0.4.5",
"grunt-angular-templates": "^0.5.7",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-connect": "^0.9.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-cssmin": "^0.12.0",
"grunt-contrib-htmlmin": "^0.4.0",
"grunt-contrib-imagemin": "^1.0.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.7.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-filerev": "^2.1.2",
"grunt-google-cdn": "^0.4.3",
"grunt-jscs": "^1.8.0",
"grunt-newer": "^1.1.0",
"grunt-ng-annotate": "^0.9.2",
"grunt-postcss": "^0.5.5",
"grunt-svgmin": "^2.0.0",
"grunt-usemin": "^3.0.0",
"gulp": "gulpjs/gulp.git#4.0",
"gulp-babel": "^7.0.0",
"jit-grunt": "^0.9.1",
"mocha": "^3.5.0",
"time-grunt": "^1.0.0"
},
"dependencies": {
"angular": "^1.8.0",
"angular-cookies": "^1.6.4",
"angular-filter": "^0.5.16",
"angular-resource": "^1.6.4",
"angular-route": "^1.6.4",
"angular-sanitize": "^1.6.4",
"angular-ui-codemirror": "^0.3.0",
"babel-preset-es2015": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.13.2",
"bootstrap": "^3.3.7",
"codemirror": "^5.26.0",
"colresizable": "^1.6.0",
"compression": "1.6.1",
"cookie-parser": "~1.3.5",
"cors": "^2.8.1",
"debug": "~2.2.0",
"easy-zip": "0.0.4",
"express": "~4.13.1",
"express-session": "^1.13.0",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"mongoose": "^4.4.10",
"morgan": "~1.6.1",
"nanoscroller": "^0.8.7",
"ng-dialog": "^1.3.0",
"node-zip": "^1.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "concurrently --kill-others --names \"babel,nodemon\" --prefix-colors \"yellow.bold,green.bold\" \"gulp watch:server\" \"nodemon lib/server.js\"",
"test": "mocha --compilers js:babel-core/register test/**/*.spec.js -w",
"build": "grunt build",
"build-server": "gulp build:server"
}
}