-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "bookexchangeapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"webpack": "./node_modules/.bin/webpack -w",
"build": "NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development webpack serve --open\" \"nodemon server/server.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExchangeBook/BookExchangeApp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ExchangeBook/BookExchangeApp/issues"
},
"homepage": "https://github.com/ExchangeBook/BookExchangeApp#readme",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"express": "^4.12.3",
"pg": "^8.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^6.0.2",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"isomorphic-fetch": "^3.0.0",
"nodemon": "^2.0.7",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.8.1"
}
}