-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 913 Bytes
/
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
{
"name": "shopping-list-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend && npm install cross-env --save-dev",
"start": "cross-env NODE_ENV=production node backend/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FxJYg/Shopping-List-Tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/FxJYg/Shopping-List-Tracker/issues"
},
"homepage": "https://github.com/FxJYg/Shopping-List-Tracker#readme",
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mongoose": "^8.9.4"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.1.9"
}
}