-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 938 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 938 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
34
35
{
"name": "root",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"cyp": "cd frontend && cypress open",
"dev": "npm -w backend run dev && npm -w frontend run dev",
"start": "cd backend && node --loader ts-node/esm ./index.ts",
"front": "npm -w frontend run dev",
"back": "npm -w backend run dev",
"front lint": "npm -w backend run lint",
"back lint": "npm -w frontend run lint",
"front build": "npm -w frontend run build"
},
"author": "",
"license": "ISC",
"workspaces": [
"backend",
"frontend"
],
"dependencies": {
"backend": "^1.0.0",
"frontend": "^0.0.0",
"mongoose": "^8.4.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.12.12",
"cypress": "^13.10.0",
"typescript": "^5.4.5"
}
}