-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.55 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@nestjs-modules/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build:lib": "nx build nestjs-modules && cp -r dist/libs/nestjs-modules/src/* libs/nestjs-modules/dist/",
"publish:lib": "cd libs/nestjs-modules && npm publish",
"build-and-publish": "npm run build:lib && npm run publish:lib"
},
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"axios": "^1.6.0",
"dotenv": "^17.2.1",
"firebase": "^12.1.0",
"firebase-admin": "^12.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@nx/eslint": "21.4.0",
"@nx/eslint-plugin": "21.4.0",
"@nx/jest": "21.4.0",
"@nx/js": "21.4.0",
"@nx/nest": "21.4.0",
"@nx/node": "21.4.0",
"@nx/react": "^21.4.0",
"@nx/vite": "21.4.0",
"@nx/web": "21.4.0",
"@nx/webpack": "21.4.0",
"@nx/workspace": "21.4.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.13.3",
"@swc/helpers": "~0.5.11",
"@swc/jest": "~0.2.38",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^3.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"jest": "^30.0.2",
"jest-environment-node": "^30.0.2",
"jest-util": "^30.0.2",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"nx": "21.4.0",
"prettier": "^2.6.2",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.29.0",
"verdaccio": "^6.0.5",
"vite": "^6.0.0",
"vitest": "^3.0.0",
"webpack-cli": "^5.1.4"
},
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
},
"assets": [
{
"input": "libs/nestjs-modules",
"glob": "README.md",
"output": "."
},
{
"input": "libs/nestjs-modules",
"glob": "LICENSE",
"output": "."
}
]
}