-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "food-journey",
"version": "1.0.0",
"description": "Food recipes",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon server/server.js\" \"webpack serve --open --hot\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodesmithLLC-goblin-shark/food-journey.git"
},
"author": "Crys Lim, Chris Pan, Michael Pay https://github.com/airpick <[email protected]>, Tu Pham",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodesmithLLC-goblin-shark/food-journey/issues"
},
"homepage": "https://github.com/CodesmithLLC-goblin-shark/food-journey#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"html-webpack-plugin": "^5.4.0",
"nodemon": "^2.0.13",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
}
}