-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "dietly",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"back": "nodemon ./src/backend/index.js",
"front": "webpack --watch --config ./src/config/webpack.config.js",
"build": "webpack --config ./src/config/webpack.config.js",
"start": "node ./src/backend/index.js"
},
"nodemonConfig": {
"ignore": [
"src/frontend/*",
"node_modules/*",
"public/*"
]
},
"author": "Joao Heringer",
"license": "ISC",
"dependencies": {
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"google-auth-library": "^5.9.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongodb": "^3.5.2",
"mongoose": "^5.13.15",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-select": "^3.0.8",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"history": "^4.10.1",
"html-webpack-plugin": "^5.5.0",
"less": "^3.10.3",
"less-loader": "^11.1.0",
"nodemon": "^2.0.1",
"prop-types": "^15.7.2",
"style-loader": "^1.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}