-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 978 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
35
{
"name": "serverless-plugin-build-create-react-app",
"version": "1.2.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://[email protected]/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": "^6.1.1",
"react-scripts": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0"
}
}