-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.57 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
49
50
51
{
"name": "poutinify",
"version": "1.0.0",
"description": "show all poutine places around Montreal!",
"main": "serverless/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-ui": "webpack --watch --progress --profile --colors",
"watch-server": "nodemon server-local.js",
"start": "npm-run-all --parallel watch-server watch-ui",
"build-ui": "webpack --progress --profile --colors",
"build-serverless": "netlify-lambda build serverless",
"build": "npm run build-ui && npm run build-serverless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lenmorld/react_node_workshop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lenmorld/react_node_workshop/issues"
},
"homepage": "https://github.com/lenmorld/react_node_workshop#readme",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"request": "^2.88.0",
"sass-loader": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "v8.0.0-beta.0",
"css-loader": "^1.0.0",
"dotenv-webpack": "^6.0.0",
"netlify-lambda": "^1.6.3",
"node-sass": "^4.0.0",
"serverless-http": "^2.5.0",
"style-loader": "^0.22.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}