-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 876 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 876 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
33
{
"name": "productstore",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"start": "NODE_ENV=production node backend/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gosia-Magdzik/ProductStore.git"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gosia-Magdzik/ProductStore/issues"
},
"homepage": "https://github.com/Gosia-Magdzik/ProductStore#readme",
"dependencies": {
"dotenv": "^16.5.0",
"express": "^4.19.2",
"mongoose": "^8.15.1",
"react-icons": "^5.5.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.1.10"
}
}