-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.94 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
{
"name": "vending-machine",
"version": "1.0.0",
"description": "Vending Machine using React/Redux",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --hot --inline --progress",
"build": "webpack -p --progress",
"gh-pages": "git checkout master; git reset --hard; git branch -D gh-pages; git push origin :gh-pages; git checkout -b gh-pages && npm run build && echo 'theme: jekyll-theme-cayman' > _config.yml && git add _config.yml static/*.eot static/*.ttf static/*.svg static/*.woff* && git add -f static/js/built/bundle.js && git commit -m 'Add built files' && git push origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugeneglova/vending-machine.git"
},
"keywords": [
"react",
"redux",
"vendingmachine"
],
"author": "Eugene Glova",
"license": "ISC",
"bugs": {
"url": "https://github.com/eugeneglova/vending-machine/issues"
},
"homepage": "https://github.com/eugeneglova/vending-machine#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bootstrap-sass": "^3.3.7",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"node-sass": "^4.5.0",
"resolve-url-loader": "^2.0.0",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"axios": "^0.15.3",
"bootstrap-loader": "^2.0.0-beta.20",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
}
}