-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.69 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
{
"name": "react-ghost-tapas",
"version": "1.0.0",
"description": "Tapas is a React.js based interface for the Ghost blogging platform",
"scripts": {
"dev": "webpack-dev-server --config ./webpack/webpack-dev.config.js --watch --colors",
"build": "rm -rf dist && webpack -p --config ./webpack/webpack-prod.config.js --colors",
"heroku-prebuild": "yarn add webpack -g && npm install --only=dev",
"heroku-postbuild": "rm -rf dist && webpack -p --config ./webpack/webpack-prod.config.js --colors",
"start": "pm2 start ./server.js",
"lint": "eslint src test webpack"
},
"keywords": [
"react",
"ghost",
"javascript",
"redux",
"webpack"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vodafone/react-ghost-tapas"
},
"author": "Vodafone",
"license": "MIT",
"dependencies": {
"autoprefixer": "^7.1.2",
"axios": "^0.16.2",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"fastclick": "^1.0.6",
"froala-editor": "^2.7.0",
"history": "^3.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"normalize.css": "^7.0.0",
"offline-plugin": "^4.7.0",
"particles.js": "^2.0.0",
"prop-types": "^15.6.0",
"react": "^15.5.4",
"react-datepicker": "^0.61.0",
"react-dom": "^15.5.4",
"react-froala-wysiwyg": "^2.7.0-1",
"react-ga": "^2.1.2",
"react-helmet": "^5.0.3",
"react-hot-loader": "^3.0.0-beta.6",
"react-paginate": "^5.0.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.4",
"react-router-redux": "^4.0.5",
"react-toggle": "^4.0.2",
"reduce-reducers": "^0.1.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"scrollprogress": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.23.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.2",
"svg-sprite-loader": "^3.2.5",
"url-loader": "^0.6.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"engines": {
"node": "7.4.0"
}
}