-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "notes_app",
"version": "1.0.0",
"description": "The Notes App is a web-based application designed to help users organize and manage their notes efficiently. With its intuitive user interface and robust features, users can create, edit, and delete notes effortlessly. The application offers a seamless experience for users to stay organized and productive in their daily tasks.",
"main": "index.js",
"scripts": {
"start:server": "cd server && npm start",
"start:client": "cd client && npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run start:server\" \"npm run start:client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"nodemon": "^3.1.2"
}
}