-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.36 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
{
"name": "onix",
"version": "0.2.0",
"description": "Simple Blog using Go with ReactJS Admin Client",
"main": "gulpfile.babel.js",
"scripts": {
"client": "cross-env NODE_ENV=development node dev-server",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.config.prod.babel.js --color -p && cp -R internals/tinymce/* public/tinymce && cp -R internals/themes/eevee/* public/themes/eevee && gulp html:minify",
"prebuild": "rimraf ./public/admin/* && rimraf ./public/tinymce/* && rimraf ./public/themes/eevee/*",
"server": "MODE=prod go run main.go",
"server:dev": "gulp server:dev",
"start": "gulp",
"test": "echo \"Error: no test specified\" && exit 1",
"tunnel": "cross-env NODE_ENV=tunnel node dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mewben/onix.git"
},
"keywords": [
"go",
"react",
"blog"
],
"author": "Melvin Soldia <melvinsoldia@gmail.com> (http://twitter.com/soldio)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mewben/onix/issues"
},
"homepage": "https://github.com/mewben/onix#readme",
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bootstrap-sass": "^3.3.6",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-config-standard": "^5.3.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-htmlmin": "^2.0.0",
"gulp-sass": "^2.3.1",
"gulp-sourcemaps": "^1.6.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.19.0",
"ip": "^1.1.3",
"json-loader": "^0.5.4",
"ngrok": "^2.2.0",
"node-notifier": "^4.6.0",
"node-sass": "^3.7.0",
"postcss-cssnext": "^2.6.0",
"postcss-focus": "^1.0.0",
"postcss-loader": "^0.9.1",
"postcss-reporter": "^1.3.3",
"redux-logger": "^2.6.1",
"sass-loader": "^3.2.0",
"shelljs": "^0.7.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"draft-js": "^0.7.0",
"moment": "^2.13.0",
"normalizr": "^2.1.0",
"nprogress": "^0.2.0",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-addons-shallow-compare": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.1.0",
"react-gridforms": "^1.0.2",
"react-icons": "^2.1.0",
"react-modal": "^1.3.0",
"react-notification-system": "^0.2.7",
"react-redux": "^4.4.5",
"react-redux-form": "^0.13.6",
"react-router": "^2.4.1",
"react-router-bootstrap": "^0.23.0",
"react-router-redux": "^4.0.5",
"react-rte": "^0.3.0",
"react-selectize": "^2.0.2",
"react-tinymce": "^0.5.1",
"redux": "^3.5.2",
"redux-api-middleware": "^1.0.2",
"redux-thunk": "^2.1.0",
"validator": "^5.3.0"
}
}