-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 4.29 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "auto-admin",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"type": "module",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"typecheck": "tsc --noEmit --incremental false -p tsconfig.src.json && tsc --noEmit --incremental false -p tsconfig.json",
"lint": "biome lint src test",
"start": "nest start",
"start:dev": "nest start --watch --preserveWatchOutput",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "node _run-with-timing.mjs ava test/ava-tests/non-saas-tests/* --serial",
"test-all": "node _run-with-timing.mjs ava --timeout=5m",
"test-all-parallel": "AVA_CONCURRENCY=8 node _run-with-timing.mjs ava --timeout=5m",
"test-saas": "node _run-with-timing.mjs ava test/ava-tests/saas-tests/*",
"test-fast": "AVA_CONCURRENCY=6 node _run-with-timing.mjs ava --timeout=5m 'test/ava-tests/non-saas-tests/!(*oracle*|*ibmdb2*|*cassandra*|*elasticsearch*).test.ts' 'test/ava-tests/saas-tests/!(*oracle*|*ibmdb2*|*cassandra*|*elasticsearch*).test.ts'",
"typeorm": "ts-node -r tsconfig-paths/register ../node_modules/.bin/typeorm",
"migration:generate": "pnpm run typeorm migration:generate -d dist/src/shared/config/datasource.config.js",
"migration:create": "pnpm run typeorm migration:create -d dist/src/shared/config/datasource.config.js",
"migration:run": "pnpm run typeorm migration:run -d dist/src/shared/config/datasource.config.js --transaction=each",
"migration:revert": "pnpm run typeorm -- migration:revert -d dist/src/shared/config/datasource.config.js",
"knip": "knip"
},
"dependencies": {
"@amplitude/node": "1.10.2",
"@aws-sdk/client-dynamodb": "^3.1050.0",
"@aws-sdk/client-s3": "^3.1050.0",
"@aws-sdk/lib-dynamodb": "^3.1050.0",
"@aws-sdk/s3-request-presigner": "^3.1050.0",
"@cedar-policy/cedar-wasm": "^4.11.0",
"@clickhouse/client": "^1.18.5",
"@elastic/elasticsearch": "8.18.1",
"@electric-sql/pglite": "^0.4.5",
"@faker-js/faker": "^10.4.0",
"@langchain/aws": "^1.3.8",
"@langchain/core": "^1.1.47",
"@nestjs/common": "11.1.21",
"@nestjs/core": "11.1.21",
"@nestjs/platform-express": "11.1.21",
"@nestjs/schedule": "^6.1.3",
"@nestjs/swagger": "^11.4.3",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.1",
"@rocketadmin/shared-code": "workspace:*",
"@sentry/minimal": "^6.19.7",
"@sentry/node": "10.53.1",
"@toon-format/toon": "^2.3.0",
"@types/crypto-js": "^4.2.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/nodemailer": "^8.0.0",
"@types/nunjucks": "^3.2.6",
"@types/qrcode": "^1.5.6",
"@zapier/secret-scrubber": "^1.1.6",
"argon2": "0.44.0",
"axios": "^1.16.1",
"basic-auth": "2.0.1",
"bcrypt": "6.0.0",
"body-parser": "^2.2.2",
"cassandra-driver": "^4.9.0",
"class-transformer": "0.5.1",
"class-validator": "^0.15.1",
"cookie-parser": "^1.4.7",
"crypto-js": "4.2.0",
"csv": "^6.5.1",
"dotenv": "17.4.2",
"express": "5.2.1",
"helmet": "8.1.0",
"i18n-iso-countries": "^7.14.0",
"ip-range-check": "0.2.0",
"json2csv": "^5.0.7",
"json5": "^2.2.3",
"jsonwebtoken": "^9.0.3",
"knex": "3.2.10",
"lru-cache": "^11.5.0",
"mongodb": "^7.2.0",
"nanoid": "5.1.11",
"node-sql-parser": "^5.4.0",
"nodemailer": "^8.0.7",
"nunjucks": "^3.2.4",
"otplib": "^13.4.0",
"p-queue": "9.3.0",
"pg-connection-string": "^2.13.0",
"qrcode": "^1.5.4",
"reflect-metadata": "0.2.2",
"rimraf": "6.1.3",
"rxjs": "7.8.2",
"safe-regex2": "^5.1.1",
"secure-json-parse": "4.1.0",
"typeorm": "1.0.0",
"typeorm-pglite": "^0.3.4",
"uuid": "^14.0.0",
"validator": "^13.15.35",
"winston": "3.19.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@ava/typescript": "7.0.0",
"@nestjs/cli": "^11.0.21",
"@nestjs/schematics": "11.1.0",
"@nestjs/testing": "^11.1.21",
"@types/bcrypt": "^6.0.0",
"@types/body-parser": "^1.19.6",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/ibm_db": "^3.2.0",
"@types/json2csv": "^5.0.7",
"@types/node": "^24.10.1",
"@types/supertest": "^7.2.0",
"@types/validator": "^13.15.10",
"ava": "8.0.1",
"knip": "^6.14.1",
"nock": "^14.0.15",
"redis": "^5.12.1",
"supertest": "^7.2.2",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3"
}
}