forked from jsdir/blarg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.6 KB
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
{
"name": "blarg-client",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/.bin/webpack -w",
"build": "BLARG_ENV=production node_modules/.bin/webpack",
"deploy": "aws s3 cp ./dist s3://blarg.im --recursive",
"postinstall": "npm run build"
},
"author": "Jason Sommer <j@jsdir.net>",
"license": "MIT",
"description": "",
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.8.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",
"babel-root-import": "^4.1.3",
"css-loader": "^0.23.1",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"node-sass": "^3.4.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.13.2"
},
"dependencies": {
"classnames": "^2.2.5",
"history": "^4.3.0",
"lodash": "^4.16.4",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-update": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-actions": "^0.12.0",
"redux-router": "^2.1.2"
}
}