-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "netlify-functions-express",
"version": "0.1.0",
"private": true,
"dependencies": {
"aws-serverless-express": "^3.2.0",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.9.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "1.1.4",
"serverless-http": "^1.6.0",
"vue": "^2.5.17",
"vue-server-renderer": "^2.5.17"
},
"scripts": {
"start": "cross-env NODE_ENV=dev npm-run-all --parallel start:app start:server",
"start:app": "react-scripts start",
"start:server": "netlify-lambda serve functions",
"build": "npm-run-all --parallel build:**",
"build:app": "react-scripts build",
"build:functions": "netlify-lambda build functions",
"test": "react-scripts test --env=jsdom"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"mini-css-extract-plugin": "^0.4.1",
"netlify-lambda": "^0.4.0",
"npm-run-all": "^4.1.3",
"parcel-bundler": "^1.9.4"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}