-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (108 loc) · 3.3 KB
/
package.json
File metadata and controls
109 lines (108 loc) · 3.3 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
108
{
"name": "labmaker",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"heroku-postbuild": "npx prisma generate && npx nx build api && npx nx build discord-bot && npx nx build reddit-bot"
},
"private": true,
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@nestjs/axios": "^0.0.4",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^1.1.5",
"@nestjs/core": "^8.0.0",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/platform-socket.io": "^8.2.4",
"@nestjs/websockets": "^8.2.5",
"@paypal/checkout-server-sdk": "^1.0.3",
"@prisma/client": "^3.7.0",
"@reduxjs/toolkit": "1.8.1",
"axios": "^0.24.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.6",
"core-js": "^3.20.2",
"discord.js": "^13.5.1",
"moment": "^2.29.1",
"os-browserify": "^0.3.0",
"passport": "^0.5.2",
"passport-discord": "^0.1.4",
"passport-jwt": "^4.0.0",
"path-browserify": "^1.0.1",
"react": "18.1.0",
"react-datetime-picker": "^3.4.3",
"react-dom": "18.1.0",
"react-dropdown": "^1.9.2",
"react-is": "18.1.0",
"react-redux": "8.0.1",
"react-router-dom": "6.3.0",
"react-toastify": "^8.1.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.9",
"rxjs": "^7.5.2",
"snoostorm": "^1.5.2",
"snoowrap": "^1.23.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"styled-components": "5.3.5",
"tslib": "^2.0.0",
"web-vitals": "^2.1.3",
"ws": "^8.4.0"
},
"devDependencies": {
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@nrwl/cli": "14.2.2",
"@nrwl/cypress": "14.2.2",
"@nrwl/eslint-plugin-nx": "14.2.2",
"@nrwl/jest": "14.2.2",
"@nrwl/linter": "14.2.2",
"@nrwl/nest": "14.2.2",
"@nrwl/node": "14.2.2",
"@nrwl/react": "14.2.2",
"@nrwl/tao": "14.2.2",
"@nrwl/web": "14.2.2",
"@nrwl/workspace": "14.2.2",
"@testing-library/react": "13.1.1",
"@testing-library/react-hooks": "7.0.2",
"@types/dotenv-webpack": "^7.0.3",
"@types/jest": "27.4.1",
"@types/node": "^17.0.8",
"@types/react": "18.0.8",
"@types/react-datetime-picker": "^3.4.1",
"@types/react-dom": "18.0.3",
"@types/react-is": "17.0.3",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.24.0",
"@typescript-eslint/parser": "5.24.0",
"babel-jest": "27.5.1",
"babel-plugin-styled-components": "^2.0.2",
"cypress": "^9.2.1",
"dotenv-webpack": "^7.0.3",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "27.5.1",
"prettier": "2.6.2",
"react-test-renderer": "18.1.0",
"ts-jest": "27.1.4",
"typescript": "4.7.3"
}
}