-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
137 lines (137 loc) · 3.9 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "vegan-recipe-app",
"version": "0.1.0",
"description": "An app to store vegan recipes",
"main": "server.js",
"scripts": {
"start": "babel-node bin/www.js",
"clean": "rimraf build/",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register --recursive --require ignore-styles --require ./test/test_helper.js",
"test:watch": "npm run test -- --watch",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack -p --config ./webpack.production.config.js --progress --color",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint app/",
"commit": "git-cz",
"heroku": "git push heroku master",
"preheroku": "npm run build",
"firebase": "firebase deploy",
"prefirebase": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natac13/vegan-recipe-app-redux"
},
"keywords": [
"vegan",
"recipes",
"react",
"redux",
"firebase",
"mocha",
"webpack"
],
"author": "Sean Campbell <[email protected]> (http://seancampbellnatac.com)",
"license": "MIT",
"engines": {
"node": "5.0.0",
"npm": "3.7.0"
},
"dependencies": {
"axios": "0.9.1",
"babel": "6.3.13",
"babel-cli": "6.3.17",
"babel-core": "6.3.21",
"babel-loader": "6.2.0",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"bluebird": "3.3.0",
"body-parser": "1.14.2",
"classnames": "2.2.1",
"cloudinary": "1.3.0",
"compression": "1.6.1",
"css-loader": "0.23.1",
"express": "4.13.3",
"extract-text-webpack-plugin": "0.9.1",
"file-loader": "0.8.5",
"filereader": "0.10.3",
"firebase": "2.4.1",
"history": "1.17.0",
"html-loader": "0.4.0",
"html-webpack-plugin": "1.7.0",
"image-webpack-loader": "1.6.2",
"immutable": "3.7.6",
"json-loader": "0.5.4",
"material-ui": "0.14.4",
"moment": "2.10.6",
"node-sass": "3.4.2",
"node-uuid": "1.4.7",
"normalize.css": "3.0.3",
"path": "0.12.7",
"postcss-loader": "0.8.0",
"ramda": "0.18.0",
"react": "0.14.7",
"react-css-modules": "3.7.4",
"react-dom": "0.14.3",
"react-dropzone": "3.3.2",
"react-fa": "4.0.0",
"react-immutable-proptypes": "1.5.0",
"react-pure-render": "1.0.2",
"react-redux": "4.0.4",
"react-router": "1.0.3",
"react-tap-event-plugin": "0.2.1",
"react-toolbox": "0.14.1",
"redux": "3.0.5",
"redux-actions": "0.9.1",
"redux-devtools": "3.1.1",
"redux-devtools-log-monitor": "1.0.4",
"redux-form": "4.1.5",
"redux-logger": "2.3.1",
"redux-simple-router": "2.0.3",
"redux-thunk": "1.0.2",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"webpack": "1.12.9"
},
"devDependencies": {
"autoprefixer": "6.2.1",
"babel-eslint": "4.1.6",
"babel-plugin-react-transform": "2.0.0-beta1",
"babel-preset-react-hmre": "1.0.0",
"chai": "3.4.1",
"chai-immutable": "1.5.3",
"commitizen": "2.4.6",
"cross-env": "1.0.6",
"cz-conventional-changelog": "1.1.5",
"dotenv": "2.0.0",
"eslint": "1.10.3",
"eslint-plugin-babel": "3.0.0",
"eslint-plugin-react": "3.11.3",
"gh-pages": "0.8.0",
"ignore-styles": "1.2.0",
"immutable-devtools": "0.0.5",
"jsdom": "7.2.1",
"json-loader": "0.5.4",
"mocha": "2.3.4",
"modularscale-sass": "2.1.1",
"node-loader": "0.5.0",
"postcss-loader": "0.8.0",
"react-addons-test-utils": "0.14.3",
"react-transform-catch-errors": "1.0.0",
"react-transform-hmr": "1.0.1",
"redbox-react": "1.2.0",
"rimraf": "2.5.0",
"toolbox-loader": "0.0.3",
"url-loader": "0.5.7",
"webpack-dev-middleware": "1.4.0",
"webpack-hot-middleware": "2.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}