-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 844 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 844 Bytes
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
{
"name": "proshop",
"type": "module",
"version": "1.0.0",
"description": "ecomm platform",
"main": "server.js",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fontawesome": "^5.6.3",
"mongoose": "^5.11.18",
"react-router-dom": "^5.2.0"
},
"devDependencies": {},
"scripts": {
"start": "node backend/server",
"server": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/error-driven-dev/proshop.git"
},
"author": "Beth Hart",
"license": "ISC",
"bugs": {
"url": "https://github.com/error-driven-dev/proshop/issues"
},
"homepage": "https://github.com/error-driven-dev/proshop#readme"
}