-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.29 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
{
"name": "perfmatters.calibreapp.com",
"version": "1.0.0",
"main": "index.jsx",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node dev-server.js",
"build": "NODE_ENV=production webpack --progress --colors --bail --optimize-minimize --optimize-dedupe",
"deploy": "aws s3 sync public/ s3://perfmatters.calibreapp.com --acl public-read",
"assets": "cp -r src/assets public/",
"invalidate-edge-cache": "aws cloudfront create-invalidation --paths / /index.html --distribution-id $CF_DISTRIBUTION"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"eslint-loader": "^1.3.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.15.0",
"jsonp-es6": "^1.0.0",
"postcss-loader": "^0.9.1",
"react-hot-loader": "^1.3.0",
"request": "^2.72.0",
"style-loader": "^0.13.1",
"tachyons": "^4.0.0-beta.27",
"uglify": "^0.1.5",
"uglify-loader": "^1.3.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
}
}