forked from nickzuber/markup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.93 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
{
"name": "mark-up",
"version": "1.0.0",
"description": "Markdown editing platform that supports MathJax and Kramdown markups.",
"main": "server.js",
"scripts": {
"restart": "./node_modules/.bin/gulp sass && webpack --config webpack.config.js && NODE_ENV=production pm2 restart server.js",
"run:prod": "./node_modules/.bin/gulp sass && webpack --config webpack.config.js && pm2 start server.js",
"build:prod": "./node_modules/.bin/gulp sass && webpack --config webpack.config.js",
"build:app": "./node_modules/.bin/gulp sass && webpack --config webpack.config.js && node server.js",
"build:sass": "./node_modules/.bin/gulp sass",
"sass": "./node_modules/.bin/gulp sass && ./node_modules/.bin/gulp watch",
"dev": "./node_modules/.bin/gulp sass && webpack --config webpack.dev.config.js && node server.dev.js",
"watch": "./node_modules/.bin/gulp watch",
"ci": "./node_modules/.bin/eslint --config .eslintrc src/**/*.js",
"lint": "./node_modules/.bin/eslint --config .eslintrc src/**/*.js || true"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nickzuber/mark-up.git"
},
"keywords": [
"markup",
"mark",
"up",
"markdown",
"kramdown",
"mathjax",
"math",
"jax",
"down"
],
"author": "Nick Zuber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickzuber/mark-up/issues"
},
"homepage": "https://github.com/nickzuber/mark-up#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^3.4.0",
"eslint-plugin-react": "^5.1.1",
"eventsource-polyfill": "^0.9.6",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.12",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-watch": "^4.3.9",
"jquery": "^3.1.0",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.6.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.18.2"
},
"dependencies": {
"backbone": "^1.3.3",
"bluebird": "^3.4.5",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.13.4",
"express-rate-limit": "^2.9.0",
"express-subdomain": "^1.0.5",
"highlight.js": "^9.6.0",
"jade": "^1.11.0",
"jspdf": "^1.3.3",
"katex": "^0.7.1",
"kramed": "^0.5.6",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"mongodb": "^2.2.30",
"mongoose": "^4.11.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^4.4.5",
"redux": "^3.7.2",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.1",
"shortid": "^2.2.6",
"typed-lite": "^1.0.2",
"yarn": "^0.27.5"
}
}