This repository was archived by the owner on Feb 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 KB
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
{
"name": "recyclable",
"version": "1.0.0",
"description": "A Web App To Help Create A Sustainable Future",
"main": "index.js",
"scripts": {
"devServer": "nodemon server/index.js",
"devClient": "webpack serve",
"start": "concurrently --kill-others-on-fail \"npm run devClient\" \"npm run devServer\"",
"build": "webpack && node server/index.js"
},
"keywords": [],
"author": "Ben Gillett, David Hallstrom, Max Rosoff",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@google-cloud/automl": "^2.4.2",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/styles": "^4.11.4",
"body-parser": "latest",
"clsx": "latest",
"express": "^4.17.1",
"framer-motion": "^4.1.17",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"notistack": "^1.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-transition-group": "^4.4.2",
"react-webcam": "^5.2.4",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"autoprefixer": "^10.2.6",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"nodemon": "^2.0.7",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
"react-router-dom": "^5.2.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0"
}
}