-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 977 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
36
37
38
39
{
"name": "react-lambda",
"version": "0.2.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^5.0.1",
"firebase": "^4.12.0",
"jquery": "^3.3.1",
"moment": "^2.21.0",
"netlify-lambda": "^0.3.0",
"opentok": "^2.6.2",
"opentok-react": "^0.7.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-draggable": "^3.0.5",
"react-redux": "^5.0.7",
"react-scripts": "1.1.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "react-scripts start",
"start:lambda": "netlify-lambda serve src/lambda",
"build": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}