-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.7 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.7 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
{
"name": "lamora",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"dev": "nx run-many --target=serve --projects=client,server --parallel=true --watch",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": ""
}
},
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"@nestjs/cache-manager": "^2.1.0",
"@nestjs/cli": "^10.4.2",
"@nestjs/common": "^10.2.5",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.5",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-fastify": "^10.2.5",
"@nestjs/schedule": "^3.0.4",
"@prisma/client": "^5.5.2",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.6",
"@tanstack/react-query": "^5.8.1",
"@tanstack/react-query-devtools": "^5.8.1",
"cache-manager": "^5.2.3",
"class-validator": "^0.14.0",
"next": "^14.2.5",
"postcss-preset-env": "^9.1.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"reflect-metadata": "^0.2.2",
"uuid": "^9.0.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@nestjs/jwt": "^10.2.0",
"@nestjs/schematics": "^10.0.2",
"@nrwl/eslint-plugin-nx": "19.5.6",
"@nrwl/js": "19.5.6",
"@nrwl/linter": "19.5.6",
"@nrwl/nest": "19.5.6",
"@nrwl/node": "19.5.6",
"@nrwl/web": "19.5.6",
"@nrwl/webpack": "19.5.6",
"@nrwl/workspace": "19.5.6",
"@nx/js": "19.5.6",
"@nx/next": "19.5.6",
"@nx/node": "19.5.6",
"@nx/react": "19.5.6",
"@tanstack/eslint-plugin-query": "^4.34.1",
"@types/node": "18.19.9",
"@types/passport-jwt": "^4.0.1",
"@types/passport-spotify": "^2.0.4",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "^10.4.15",
"eslint": "9.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"nx": "19.5.6",
"path": "^0.12.7",
"postcss": "8.4.38",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"prisma": "^5.5.2",
"sass": "1.62.1",
"swc-loader": "^0.2.3",
"swiper": "^11.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.5.4"
},
"nx": {}
}