-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "gammon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "eslint app/**/*.js && npm run build",
"build": "webpack",
"release": "git checkout gh-pages && git reset --hard master && npm run build && git add -f dist && git commit -am 'release' && git push -f origin gh-pages",
"dev": "webpack-dev-server"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-eslint": "^6.0.0-beta.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.0",
"postcss-calc": "^5.2.0",
"postcss-color-function": "^2.0.0",
"postcss-custom-properties": "^5.0.0",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.8.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"classnames": "^2.2.3",
"invariant": "^2.2.0",
"react": "^0.14.7",
"react-addons-update": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-actions": "^0.9.1",
"redux-thunk": "^1.0.3"
}
}