-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.45 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.45 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
88
89
90
91
92
{
"name": "obsidian",
"version": "0.0.6",
"description": "A CMS/Blogging engine.",
"bugs": {
"url": "https://github.com/Nulifier/Obsidian/issues"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter spec test/",
"lint": "eslint lib/ test/",
"build": "babel src --out-dir lib",
"build:watch": "babel src --watch --out-dir lib",
"build-admin": "gulp",
"build-admin:watch": "webpack -d --watch --config admin/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Nulifier/Obsidian.git"
},
"keywords": [
"cms",
"blog",
"express"
],
"author": "Nulifier",
"license": "MIT",
"homepage": "https://github.com/Nulifier/Obsidian#readme",
"dependencies": {
"body-parser": "^1.13.2",
"bunyan": "^1.4.0",
"compression": "^1.5.1",
"express": "^4.13.1",
"express-handlebars": "^2.0.1",
"glob": "^5.0.15",
"lodash": "^3.10.0",
"moment": "^2.10.6",
"mongoose": "^4.1.11"
},
"devDependencies": {
"assets-webpack-plugin": "^3.0.0",
"babel": "5.x.x",
"babel-core": "5.8.x",
"babel-loader": "5.3.x",
"chai": "3.4.x",
"css-loader": "0.21.x",
"eslint": "1.8.x",
"eslint-plugin-react": "^3.3.1",
"exports-loader": "^0.6.2",
"grunt": "^0.4.5",
"gulp": "^3.9.0",
"gulp-util": "^3.0.6",
"history": "1.13.x",
"imports-loader": "^0.6.4",
"istanbul": "0.4.x",
"less": "^2.5.1",
"less-loader": "^2.2.1",
"less-plugin-clean-css": "^1.5.1",
"mocha": "^2.2.5",
"normalize.css": "^3.0.3",
"pluralize": "^1.2.1",
"react": "0.14.x",
"react-datepicker": "0.15.x",
"react-dom": "0.14.x",
"react-redux": "4.0.x",
"react-router": "^1.0.0-beta3",
"react-select": "0.9.x",
"redux": "3.0.x || 2.0.x",
"redux-actions": "^0.8.0",
"redux-devtools": "2.1.x",
"redux-promise": "^0.5.0",
"redux-router": "~1.0.0-beta3",
"redux-thunk": "^1.0.0",
"sinon": "1.17.x",
"sinon-chai": "^2.8.0",
"style-loader": "0.13.x",
"updeep": "0.10.x",
"webpack": "^1.10.5",
"whatwg-fetch": "0.10.x"
},
"babel": {
"experimental": true,
"retainLines": true,
"optional": [
"runtime"
]
}
}