-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 834 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "notenest",
"version": "0.1.0",
"private": true,
"description": "NoteNest - Collaborative Knowledge Base for Teams",
"scripts": {
"dev": "concurrently -n backend,frontend -c blue,green \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"build": "npm run build --prefix frontend",
"install:all": "npm install && npm install --prefix backend && npm install --prefix frontend",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "npm test --prefix backend",
"test:frontend": "npm test --prefix frontend"
},
"devDependencies": {
"@types/diff-match-patch": "^1.0.36",
"concurrently": "^9.1.0"
},
"dependencies": {
"diff-match-patch": "^1.0.5"
}
}