-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-lambda-example",
"version": "0.1.0",
"description": "React isomorphic application hosted on Amazon Lambda and served through Amazon API Gateway.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"start": "npm run lint && ./script/start.sh",
"release": "npm run lint && ./script/build-prod.sh",
"serve": "./node_modules/.bin/serve -p 9000 dist",
"zip": "cd dist && zip -r ../$CIRCLE_BUILD_NUM.zip *",
"deploy": "s3-deploy './*.zip' --cwd './' --region $AWS_REGION --bucket $LAMBDA_BUCKET_NAME",
"deploy-static": "s3-deploy './dist_static/**' --cwd './dist_static/' --region $AWS_REGION --bucket $STATIC_BUCKET_NAME/$CIRCLE_BUILD_NUM",
"deploy-lambda": "./script/deploy-lambda.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domderen/react-lambda-example.git"
},
"keywords": [
"react",
"Amazon",
"Lambda",
"API",
"Gateway",
"isomorphic",
"universal",
"server",
"side",
"rendering",
"render",
"string"
],
"author": "Dominik Deren (@domderen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/domderen/react-lambda-example/issues"
},
"homepage": "https://github.com/domderen/react-lambda-example#readme",
"dependencies": {
"co": "^4.6.0",
"react": "^0.13.3",
"react-router": "^0.13.3",
"lodash": "^3.10.1",
"immutable": "^3.7.4",
"react-bootstrap": "^0.24.3",
"babel": "^5.8.21",
"babel-core": "^5.8.21"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"aws-sdk": "^2.1.45",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
"bootstrap": "^3.3.5",
"compression": "^1.5.2",
"css-loader": "^0.15.6",
"denodeify": "^1.2.1",
"eslint": "^1.1.0",
"eslint-plugin-babel": "^2.0.0",
"eslint-plugin-react": "^3.2.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"fs-extra": "^0.23.1",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"mkdirp": "^0.5.1",
"node-libs-browser": "^0.5.2",
"nodemon": "^1.4.0",
"opn": "^3.0.2",
"postcss-loader": "^0.5.1",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.2.8",
"s3-deploy": "^0.1.7",
"serve": "^1.4.0",
"serve-favicon": "^2.3.0",
"strip-loader": "^0.1.0",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}