-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "coffee-maker-app",
"version": "1.0.0",
"description": "prototype of coffee maker app designed by Gal Shir",
"main": "./src/index.js",
"scripts": {
"start": "webpack-dev-server --colors --content-base src --port 1337 --hot --inline",
"build": "npm-run-all build:*",
"build:js": "webpack -p --colors --progress --config webpack.production.config.js --display-error-details --display-modules",
"build:html": "html-dist src/index.html -r -m -i main.js -o dist/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futuun/coffee-maker-app.git"
},
"keywords": [
"coffee",
"coffee-maker-app",
"im-not-good-with-keywords"
],
"author": "Michał Mokijewski",
"license": "ISC",
"bugs": {
"url": "https://github.com/futuun/coffee-maker-app/issues"
},
"homepage": "https://github.com/futuun/coffee-maker-app#readme",
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.21.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"html-dist": "^0.1.0",
"node-sass": "^3.3.3",
"npm-run-all": "^1.2.12",
"object-assign": "^4.0.1",
"postcss-loader": "^0.7.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
}
}