-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 790 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 790 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
{
"name": "todo-app",
"version": "1.0.0",
"description": "Full-stack Todo application with React and Node.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd todo-backend && npm run dev",
"dev:frontend": "cd todo-frontend && npm start",
"install:all": "npm install && cd todo-backend && npm install && cd ../todo-frontend && npm install",
"build": "cd todo-backend && npm run build && cd ../todo-frontend && npm run build"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"todo",
"react",
"nodejs",
"typescript",
"mongodb"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/jsonwebtoken": "^8.5.9",
"jsonwebtoken": "^8.5.1"
}
}