-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
36
37
38
39
40
41
42
43
44
{
"name": "mindblock_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:frontend": "npm --workspace frontend run dev",
"dev:backend": "npm --workspace backend run start:dev",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"lint:frontend": "npm --workspace frontend run lint",
"lint:backend": "npm --workspace backend run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MindBlockLabs/mindBlock_Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MindBlockLabs/mindBlock_Backend/issues"
},
"private": true,
"workspaces": [
"frontend",
"backend",
"contracts"
],
"homepage": "https://github.com/MindBlockLabs/mindBlock_Backend#readme",
"dependencies": {
"@nestjs/common": "^11.1.14",
"@nestjs/core": "^11.1.14",
"@tanstack/react-query": "^5.90.21",
"framer-motion": "^12.34.3",
"minimatch": "^10.1.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/nodemailer": "^7.0.9"
}
}