-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 951 Bytes
/
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
{
"name": "serverless-plugin-build-create-react-app",
"version": "1.1.0",
"description": "Serverless plugin to build a React app while deploying Serverless. For use with s3bucket-sync",
"main": "dist/index.js",
"scripts": {
"build": "babel index.js -d dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lyuzashi/serverless-plugin-build-create-react-app.git"
},
"keywords": [
"serverless",
"sls",
"plugin",
"react",
"cra"
],
"author": "Ben Patterson",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyuzashi/serverless-plugin-build-create-react-app/issues"
},
"homepage": "https://github.com/lyuzashi/serverless-plugin-build-create-react-app#readme",
"dependencies": {
"react-dev-utils": "^4.2.1",
"react-scripts": "^1.0.16"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0"
}
}