-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 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
{
"name": "finstate-budget-manager",
"version": "1.0.0",
"description": "FinState is an budget manager created in MERN stack. I created it as an final project for my classes at the University of Wrocław.",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tTargiel/FinState-Budget-Manager.git"
},
"author": "Tomasz Targiel",
"license": "MIT",
"bugs": {
"url": "https://github.com/tTargiel/FinState-Budget-Manager/issues"
},
"homepage": "https://github.com/tTargiel/FinState-Budget-Manager#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.3"
},
"devDependencies": {
"concurrently": "^8.2.0",
"nodemon": "^3.0.1"
}
}