-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 868 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
{
"name": "serverless-react-starter",
"version": "1.0.0",
"author": "Pasquale Coretti <pasquale.coret@gmail.com>",
"private": true,
"workspaces": [
"packages/*"
],
"description": "react + serverless (with webpack) starter",
"main": "index.js",
"scripts": {
"start": "concurrently \"yarn start:client\" \"yarn start:serverless\"",
"quickInstall": "yarn && yarn install:client && yarn install:serverless",
"start:client": "yarn workspace client run start",
"start:serverless": "yarn workspace serverless run start",
"install:client": "yarn workspace client",
"install:serverless": "yarn workspace serverless"
},
"keywords": [
"lambda",
"serverless",
"serverless-webpack",
"serverless-offline",
"express",
"react"
],
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.2"
}
}