forked from MortarJS/Mortar-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.93 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.93 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
{
"name": "mortarjs",
"version": "2.1.7",
"homepage": "http://mortarjs.io",
"repository": {
"type": "git",
"url": "https://github.com/MortarJS/Mortar-JS"
},
"description": "Mortar JS - an Admin UI framework",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"prepublish": "npm run build-js && npm run build-css && npm run build-fonts",
"build-js": "gulp js",
"build-css": "gulp sass",
"build-fonts": "gulp fonts",
"lint": "eslint lib",
"document": "jsdoc -p -r index.js lib -d documentation/ -R README.md -t ./node_modules/ink-docstrap/template -c jsdoc.conf.json && open documentation/index.html",
"doc": "jsdoc -p -r index.js lib -d documentation/ -R README.md -t ./node_modules/ink-docstrap/template -c jsdoc.conf.json",
"serve-playground": "webpack-dev-server --progress --colors --watch --config examples/playground/webpack.config.js",
"open-playground": "open http://localhost:21356/webpack-dev-server/ && webpack-dev-server --progress --colors --watch --config examples/playground/webpack.config.js",
"production-playground": "webpack --config examples/playground/webpack.config.js -p"
},
"author": "The MortarJS Team",
"contributors": [
"Simon Yousoufov <simon.yous@gmail.com>",
"Kyle Mendes <kyleamendes@gmail.com>",
"Walter Beller-Morales <walter.beller.morales@gmail.com>"
],
"dependencies": {
"classnames": "^2.1.1",
"flux": "^2.0.3",
"fuse.js": "^1.3.0",
"js-schema": "git+https://github.com/fuzz-productions/js-schema.git",
"keymirror": "^0.1.1",
"lodash": "^4.17.15",
"react": "^15.0.0 || 0.14.0",
"react-bootstrap": "0.22.6",
"react-dom": "^15.0.0 || ^0.14.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"reqwest": "^1.1.5",
"validator": "^3.40.0"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"bootstrap": "~3.3.1",
"clean-webpack-plugin": "^0.1.6",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-plugin-react": "^4.2.3",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.1",
"gulp-minify-css": "^1.2.3",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^1.5.2",
"history": "^2.0.2",
"imports-loader": "^0.6.3",
"ink-docstrap": "^1.1.0",
"jsdoc": "^3.4.0",
"json-loader": "^0.5.4",
"moment": "^2.10.6",
"node-sass": "^3.4.2",
"normalize.css": "~3.0.3",
"postcss-loader": "^0.8.2",
"raw-loader": "^0.5.1",
"react-ga": "^2.1.0",
"react-router": "2.7.x",
"sass-loader": "^3.1.2",
"script-loader": "^0.6.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.14.0"
}
}