-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.31 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
{
"name": "mandi",
"version": "1.0.6",
"description": "A lightweight, configurable CMS build using Koa, MongoDB, Vue.js and Stylus",
"main": "lib/Mandi.js",
"scripts": {
"start": "node lib/run.js",
"build": "browserify -v -t pugify -t babelify client/index.js -o www/js/index.js; stylus -u nib -u griddy style/index.styl -o www/css/styles.css",
"watch": "npm run build; watchify -v -t pugify -t babelify client/index.js -o www/js/index.js | stylus -u nib -u griddy style/index.styl -w -o www/css/styles.css | livereload www",
"dev": "npm run watch | npm run watch-server",
"watch-server": "nodemon --watch ./lib --watch ./common --watch ./website.json --exec 'npm start'",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Workshape/mandi"
},
"author": "Tancredi Trugenberger",
"license": "ISC",
"dependencies": {
"api-service": "^1.0.8",
"async": "^2.0.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.6",
"browserify": "^13.1.0",
"cli-color": "^1.1.0",
"color": "^1.0.3",
"config": "^1.21.0",
"email": "^0.2.6",
"fs-extra": "^0.30.0",
"griddy": "^1.0.2",
"icon-font-generator": "^1.0.4",
"image-size": "^0.5.1",
"install": "^0.8.2",
"jimp": "^0.2.27",
"knox": "^0.9.2",
"koa": "^1.2.4",
"koa-body": "^1.6.0",
"koa-mount": "^1.3.0",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"livereload": "^0.5.0",
"lodash": "^4.16.2",
"mailgun-js": "^0.7.12",
"marked": "^0.3.6",
"merge-dirs": "^0.2.1",
"mime": "^1.3.4",
"minimist": "^1.2.0",
"moment": "^2.14.1",
"mongodb": "^2.2.16",
"mustache": "^2.3.0",
"nib": "^1.1.2",
"node-slack": "0.0.7",
"nodemon": "^1.10.2",
"npm": "^3.10.9",
"pug": "^2.0.0-beta10",
"pugify": "^1.0.5",
"qs": "^6.3.0",
"quill": "^1.2.0",
"random-seed": "^0.3.0",
"randomstring": "^1.1.5",
"request-promise": "^4.1.1",
"routy": "^0.1.9",
"simple-color-picker": "^0.1.2",
"slack": "^7.7.3",
"slack-node": "^0.1.8",
"slug": "^0.9.1",
"stylus": "^0.54.5",
"tiny-emitter": "^1.1.0",
"vue": "^2.0.3",
"vue-range-slider": "^0.2.4",
"watchify": "^3.7.0"
}
}