forked from HelloBetterLTD/markdownfield
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "silverstripers-markdown",
"version": "1.0.1",
"description": "The SilverStripers Markdown Editor",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack --progress --colors --config webpack.config.babel.js",
"webpack:w": "npm run webpack -- --watch",
"scss": "gulp scss",
"scss:w": "gulp scss:w",
"js": "npm run webpack",
"js:w": "npm run webpack:w",
"build": "gulp",
"build:w": "gulp watch"
},
"repository": {
"type": "git",
"url": "git://github.com:SilverStripers/markdownfield.git"
},
"author": "SilverStripers",
"license": "BSD-3-Clause",
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"jquery": "^3.1.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-simplemde-editor": "3.6.11",
"bootstrap": "4.0.0-beta",
"util": "0.10.3"
},
"devDependencies": {
"@silverstripe/webpack-config": "0.3.0",
"node-sass": "^4.5.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.9.0",
"concurrently": "2.2.0",
"css-loader": "^0.28.1",
"dateformat": "^2.0.0",
"flexslider": "^2.6.3",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.1",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.3.2",
"gulp-sass-unicode": "^1.0.1",
"gulp-uglify": "^2.1.2",
"gulp-sourcemaps": "^2.6.1",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"react-select": "^1.0.0-rc.3",
"redux": "^3.6.0",
"style-loader": "^0.17.0",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
}
}