-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.32 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
99
100
101
102
103
104
105
106
107
{
"name": "devshare-backend",
"version": "0.0.1",
"description": "",
"author": {
"name": "Mikhail Ganin",
"email": "mikhailganin239@gmail.com"
},
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn build:next && yarn build:nest",
"build:next": "next build",
"build:nest": "nest build --path ./tsconfig.server.json",
"start": "node ./dist/server/main.js",
"start:next": "next dev",
"start:dev": "NODE_ENV=development nest start --path ./tsconfig.server.json --watch",
"start:debug": "next build && nest start --path ./tsconfig.server.json --debug --watch",
"start:prod": "node dist/main",
"lint": "yarn run eslint . --ignore-pattern \"node_modules/*\""
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "^2.0.5",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^7.3.1",
"@nestjs/typeorm": "^10.0.2",
"@prisma/client": "5.12.1",
"@reduxjs/toolkit": "^2.0.1",
"@types/react-redux": "^7.1.32",
"axios": "^1.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"clsx": "^2.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"express": "^4.19.2",
"fast-xml-parser": "^4.4.0",
"js2xmlparser": "^5.0.0",
"nest-next": "^10.1.0",
"next": "=13.4.2",
"next-redux-wrapper": "^8.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"prisma-class-generator": "^0.2.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.1",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reflect-metadata": "^0.2.0",
"run-script-webpack-plugin": "^0.2.0",
"rxjs": "^7.8.1",
"spinners-react": "^1.0.7",
"typeorm": "^0.3.20",
"uuid": "^9.0.1",
"webpack-node-externals": "^3.0.0",
"xml-js": "^1.6.11",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/node-fetch": "2",
"@types/node-sass": "^4.11.6",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jest": "^29.5.0",
"node-sass": "^9.0.0",
"pg": "^8.11.5",
"prettier": "^3.1.0",
"prisma": "^5.12.1",
"sass": "^1.69.5",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}