-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "react-redux-bookstore",
"version": "1.0.0",
"description": "A simple web application that manages books in a bookstore",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"server-install": "npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeCrio/react-redux-bookstore.git"
},
"keywords": [
"react",
"redux",
"bookstore",
"crud",
"hooks",
"tailwindcss",
"es6",
"nodejs"
],
"author": "Precious OSSAI",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeCrio/react-redux-bookstore/issues"
},
"homepage": "https://github.com/PeCrio/react-redux-bookstore#readme",
"dependencies": {
"config": "^3.3.2",
"express": "^4.17.1",
"mongoose": "^5.10.10"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
}
}