-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.54 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
{
"name": "jungledrum",
"version": "0.9.6",
"description": "Command line super simple CMS",
"main": "index.js",
"watch": {
"buildjs": {
"patterns": [
"admin/js"
],
"extensions": "js"
},
"buildcss": {
"patterns": [
"admin/sass"
],
"extensions": "sass"
}
},
"scripts": {
"test": "standard",
"syntax": "standard --fix",
"build": "node build.js",
"buildjs": "node build.js js",
"buildcss": "node build.js css",
"watch": "npm-watch"
},
"bin": {
"jungledrum": "./index.js"
},
"author": {
"name": "Viktor Hesselbom",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hesselbom/jungledrum.git"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.16.0",
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"express": "^4.14.1",
"express-jwt": "^5.1.0",
"font-awesome": "^4.7.0",
"fs-extra": "^2.0.0",
"glob": "^7.1.1",
"jsonfile": "^2.4.0",
"jsonwebtoken": "^7.3.0",
"junglet": "^1.2.2",
"katex": "^0.7.1",
"markdown-it": "^8.2.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-deflist": "^2.0.1",
"markdown-it-footnote": "^3.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-math": "^4.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc": "^1.1.0",
"mkdirp": "^0.5.1",
"multer": "^1.3.0",
"password-hash-and-salt": "^0.1.4",
"perfy": "^1.1.2",
"prompt": "^1.0.0",
"pug": "^2.0.0-beta10",
"pug-lexer": "^2.3.2",
"sharp": "^0.18.0",
"shortid": "^2.2.6",
"slug": "^0.9.1",
"yesno": "0.0.1"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-transform-react-jsx": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"classnames": "^2.2.5",
"history": "^4.5.1",
"js-cookie": "^2.1.4",
"node-sass": "^4.5.0",
"node-sass-globbing": "0.0.23",
"normalize-scss": "^6.0.0",
"npm-watch": "^0.1.8",
"postcss": "^5.2.11",
"preact": "^8.0.0",
"preact-redux": "^2.0.0",
"preact-router": "^2.4.5",
"redux": "^3.6.0",
"whatwg-fetch": "^2.0.3"
},
"standard": {
"ignore": [
"/admin/admin.js"
],
"globals": [
"fetch",
"GLOBALS",
"FormData",
"plugins"
]
}
}