-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.04 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.04 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
{
"name": "needs.uz",
"version": "0.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "node ./src/index.js",
"start": "NODE_ENV=production node ./src/index.js",
"tailwind": "tailwindcss -c tailwind.config.cjs -i ./src/public/css/main.css -o ./src/public/css/main.min.css --watch",
"nodemon": "nodemon ./src/index.js",
"dev": "concurrently \"pnpm tailwind\" \"pnpm nodemon\"",
"migrate": "NODE_ENV=production knex migrate:latest --env production",
"migrate:dev": "knex migrate:latest",
"seed": "NODE_ENV=production knex seed:run --env production",
"rollback:dev": "knex migrate:rollback",
"rollback": "NODE_ENV=production knex migrate:rollback --env production",
"seed:dev": "knex seed:run",
"setup-es:dev": "node ./src/elasticsearch-setup.js",
"setup-es": "NODE_ENV=production node ./src/elasticsearch-setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeahuz/yeah.git"
},
"author": "juraev00",
"license": "ISC",
"bugs": {
"url": "https://github.com/yeahuz/yeah/issues"
},
"homepage": "https://github.com/yeahuz/yeah#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.354.0",
"@aws-sdk/client-ses": "^3.354.0",
"@aws-sdk/lib-storage": "^3.354.0",
"@aws-sdk/s3-request-presigner": "^3.354.0",
"@casl/ability": "^6.5.0",
"@elastic/elasticsearch": "^8.8.1",
"@fastify/accepts": "^4.2.0",
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.3.0",
"@fastify/etag": "4.2.0",
"@fastify/flash": "^5.1.0",
"@fastify/formbody": "7.4.0",
"@fastify/multipart": "^7.7.0",
"@fastify/rate-limit": "^8.0.1",
"@fastify/secure-session": "^6.1.0",
"@fastify/static": "^6.10.2",
"@fastify/view": "^7.4.1",
"@fastify/websocket": "^8.1.0",
"@googlemaps/google-maps-services-js": "^3.3.32",
"@googlemaps/js-api-loader": "^1.16.2",
"@otplib/preset-browser": "^12.0.1",
"ajv-errors": "^3.0.0",
"argon2": "^0.30.3",
"aws-sdk": "^2.1400.0",
"base64url": "^3.0.1",
"canvas": "^2.11.2",
"cbor": "^9.0.0",
"dom": "github:jcbbb/dom",
"dotenv": "^16.3.1",
"eta": "^3.0.3",
"fastify": "^4.18.0",
"fastify-plugin": "^4.5.0",
"google-auth-library": "^8.8.0",
"hashids": "^2.3.0",
"i18next": "^23.2.1",
"i18next-fetch-backend": "^5.0.2",
"i18next-fs-backend": "^2.1.5",
"i18next-http-middleware": "^3.3.2",
"idb": "^7.1.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"knex": "2.4.2",
"negotiator": "^0.6.3",
"node-cron": "^3.0.2",
"node-ipinfo": "^3.4.2",
"node-telegram-bot-api": "^0.61.0",
"otplib": "^12.0.1",
"packbytes": "^1.0.7",
"pg": "^8.11.0",
"qrcode-esm": "^1.5.1",
"qs": "^6.11.2",
"redom": "^3.29.1",
"state": "github:jcbbb/state",
"ua-parser-js": "^1.0.35",
"ws": "^8.13.0"
},
"devDependencies": {
"browser-sync": "^2.29.3",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"tailwindcss": "^3.3.2"
}
}