-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 KB
/
package.json
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
{
"name": "taloscodingtest",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development ts-node --project tsconfig.server.json src/server/index.ts",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"build": "npm run build:next && npm run build:server",
"start": "NODE_ENV=production node dist/index.js -p $PORT",
"deploy": "sh ./deploy/deploy.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.15.0",
"@bull-board/express": "^3.6.0",
"@next-auth/typeorm-adapter": "^0.0.1",
"@next-auth/typeorm-legacy-adapter": "^0.0.2-canary.129",
"@types/jsonwebtoken": "^8.5.2",
"@types/multer": "^1.4.5",
"@types/node-cron": "^2.0.3",
"@types/redis": "^2.8.31",
"async": "^3.2.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.0-beta3",
"bull": "^3.29.3",
"bullmq": "^1.50.2",
"cheerio": "^1.0.0-rc.9",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cron": "^1.8.2",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mysql": "^2.18.1",
"next": "^10.2.2",
"next-auth": "^3.23.3",
"next-redis-cache": "^1.0.3",
"node-cron": "^3.0.0",
"pg": "^8.7.1",
"puppeteer": "^9.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-key-index": "^0.1.1",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.1.0",
"serverless-mysql": "^1.5.4",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"swr": "^1.0.0",
"tailwindcss": "^2.2.7",
"typeorm": "^0.2.37",
"uuid": "^8.3.2",
"venom-bot": "^4.0.5",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.12",
"@types/node": "^15.6.1",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.6",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.2"
},
"description": ""
}