-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 748 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 748 Bytes
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
{
"name": "react-apig-lambda",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js",
"deploy:lambda": "apex deploy",
"deploy:s3": "aws s3 cp ./dist/ s3://test.es6.fi/assets/ --recursive",
"deploy": "npm run deploy:lambda && npm run deploy:s3"
},
"author": "Lari Hoppula",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"history": "^4.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "4.0.0-alpha.3",
"webpack": "^1.13.2"
}
}