-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·46 lines (46 loc) · 1.22 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
{
"name": "recipe-helper",
"version": "1.0.0",
"description": "Import google doc recipes to your shopping list.",
"main": "index.js",
"scripts": {
"build": "webpack --optimize-minimize",
"dev": "webpack-dev-server --port 3000 --host 0.0.0.0 --devtool eval --progress --colors --content-base build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flassari/recipe-helper.git"
},
"author": "Ari Arnbjörnsson <[email protected]> (http://flassari.is)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Flassari/recipe-helper/issues"
},
"homepage": "https://github.com/Flassari/recipe-helper#readme",
"dependencies": {
"bluebird": "^3.1.1",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"wurl": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.2",
"raw-loader": "^0.5.1",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.10",
"webpack-dev-server": "^1.14.0"
},
"plugins": [
"transform-react-jsx"
]
}