-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "trash-panda-buffet",
"version": "2.1.0",
"description": "Demo Project for AWS Developer: Serverless Architecture and Monitoring",
"dependencies": {
"aws-xray-sdk": "3.3.3",
"lodash": "4.17.21",
"mysql2": "2.3.0",
"sequelize": "6.6.5",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@material-ui/core": "4.12.3",
"aws-read-region": "1.1.0",
"axios": "0.21.1",
"babel-eslint": "10.0.3",
"babel-loader": "8.2.2",
"connected-react-router": "6.9.1",
"copy-webpack-plugin": "9.0.1",
"css-loader": "6.2.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"history": "4.10.1",
"html-loader": "2.1.2",
"loader-utils": "2.0.0",
"mini-css-extract-plugin": "2.2.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.4",
"react-router-dom": "5.2.0",
"redux": "4.1.1",
"redux-thunk": "2.3.0",
"regenerator-runtime": "0.13.9",
"serverless": "2.55.0",
"serverless-cloudfront-invalidate": "1.9.0",
"serverless-finch": "2.6.0",
"standard": "16.0.3",
"string-replace-loader": "3.0.3",
"terser-webpack-plugin": "5.1.4",
"webpack": "5.51.1",
"webpack-cli": "4.8.0",
"webpack-merge": "5.8.0"
},
"scripts": {
"build:dev": "webpack --config ./src/client/webpack.dev.config.js",
"build:client": "webpack --config ./src/client/webpack.prod.config.js",
"deploy": "npm run deploy:aws && npm run deploy:client && npm run deploy:data",
"deploy:aws": "serverless deploy",
"deploy:client": "npm run build:client && serverless client deploy --no-confirm",
"deploy:data": "serverless invoke --function populateData",
"remove": "serverless remove"
},
"author": "Ryan Lewis <ryan@ryanlewis.dev>",
"license": "MIT",
"private": true
}