forked from patrickdent/serverless-isomorphism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 956 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": "my-cloud-function-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "chmod +x scripts/deploy.sh",
"deploy": "scripts/deploy.sh",
"build": "webpack --config webpack.config.cloud.js && cp package.json dist",
"local": "rm -rf ./build && webpack --config webpack.config.local.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.3",
"mobx": "^5.7.0",
"mobx-react": "^5.4.2",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"copy-webpack-plugin": "^4.5.2",
"start-server-webpack-plugin": "^2.2.5",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
}
}