mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
227 lines
8.6 KiB
227 lines
8.6 KiB
{ |
|
"name": "nocodb", |
|
"version": "0.111.4", |
|
"description": "NocoDB Backend", |
|
"main": "dist/bundle.js", |
|
"author": { |
|
"name": "NocoDB Inc", |
|
"url": "https://nocodb.com/" |
|
}, |
|
"homepage": "https://github.com/nocodb/nocodb", |
|
"repository": { |
|
"type": "git", |
|
"url": "https://github.com/nocodb/nocodb.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/nocodb/nocodb/issues" |
|
}, |
|
"engines": { |
|
"node": ">=18" |
|
}, |
|
"license": "AGPL-3.0-or-later", |
|
"scripts": { |
|
"build": "pnpm run docker:build", |
|
"build:obfuscate": "EE=true webpack --config webpack.config.js", |
|
"obfuscate:build:publish": "pnpm run build:obfuscate && pnpm publish .", |
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
|
"start": "pnpm run watch:run", |
|
"start:prod": "node docker/main", |
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", |
|
"test": "jest", |
|
"test:watch": "jest --watch", |
|
"test:cov": "jest --coverage", |
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
|
"test:e2e": "jest --config ./test/jest-e2e.json", |
|
"watch:run": "cross-env NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/docker --log-error --project tsconfig.json\"", |
|
"watch:run:mysql": "cross-env NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/dockerRunMysql --log-error --project tsconfig.json\"", |
|
"watch:run:pg": "cross-env NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/dockerRunPG --log-error --project tsconfig.json\"", |
|
"watch:run:playwright:mysql": "rm -f ./test_noco.db; cross-env DB_TYPE=mysql NC_DB=\"mysql2://localhost:3306?u=root&p=password&d=pw_ncdb\" PLAYWRIGHT_TEST=true NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/testDocker --log-error --project tsconfig.json\"", |
|
"watch:run:playwright:pg": "rm -f ./test_noco.db; cross-env DB_TYPE=pg NC_DB=\"pg://localhost:5432?u=postgres&p=password&d=pw_ncdb\" PLAYWRIGHT_TEST=true NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/testDocker --log-error --project tsconfig.json\"", |
|
"watch:run:playwright": "rm -f ./test_noco.db; cross-env DB_TYPE=sqlite DATABASE_URL=sqlite:./test_noco.db PLAYWRIGHT_TEST=true NC_DISABLE_TELE=true EE=true NC_SNAPSHOT_WINDOW_SEC=3 nodemon -e ts,js -w ./src -x \"ts-node src/run/testDocker --log-error --project tsconfig.json\"", |
|
"watch:run:playwright:quick": "rm -f ./test_noco.db; cp ../../tests/playwright/fixtures/noco_0_91_7.db ./test_noco.db; cross-env DATABASE_URL=sqlite:./test_noco.db NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/docker --log-error --project tsconfig.json\"", |
|
"watch:run:playwright:pg:cyquick": "rm -f ./test_noco.db; cp ../../tests/playwright/fixtures/noco_0_91_7.db ./test_noco.db; cross-env NC_DISABLE_TELE=true EE=true nodemon -e ts,js -w ./src -x \"ts-node src/run/dockerRunPG_CyQuick.ts --log-error --project tsconfig.json\"", |
|
"test:unit": "cross-env EE=false TS_NODE_PROJECT=./tests/unit/tsconfig.json mocha -r ts-node/register tests/unit/index.test.ts --recursive --timeout 300000 --exit --delay", |
|
"test:unit:pg": "cp tests/unit/.pg.env tests/unit/.env; cross-env EE=false TS_NODE_PROJECT=./tests/unit/tsconfig.json mocha -r ts-node/register tests/unit/index.test.ts --recursive --timeout 300000 --exit --delay", |
|
"docker:build": "EE=\"true-xc-test\" webpack --config docker/webpack.config.js" |
|
}, |
|
"dependencies": { |
|
"@aws-sdk/client-kafka": "^3.410.0", |
|
"@google-cloud/storage": "^7.1.0", |
|
"@graphql-tools/merge": "^6.0.12", |
|
"@jm18457/kafkajs-msk-iam-authentication-mechanism": "^3.1.2", |
|
"@nestjs/bull": "^10.0.1", |
|
"@nestjs/common": "^10.2.1", |
|
"@nestjs/config": "^3.0.0", |
|
"@nestjs/core": "^10.2.1", |
|
"@nestjs/event-emitter": "^2.0.2", |
|
"@nestjs/jwt": "^10.1.0", |
|
"@nestjs/mapped-types": "^2.0.2", |
|
"@nestjs/passport": "^10.0.1", |
|
"@nestjs/platform-express": "^10.2.1", |
|
"@nestjs/platform-socket.io": "^10.2.1", |
|
"@nestjs/serve-static": "^4.0.0", |
|
"@nestjs/throttler": "^4.2.1", |
|
"@nestjs/websockets": "^10.2.1", |
|
"@sentry/node": "^6.3.5", |
|
"@techpass/passport-openidconnect": "^0.3.3", |
|
"@types/chai": "^4.2.12", |
|
"airtable": "^0.12.1", |
|
"ajv": "^8.12.0", |
|
"ajv-formats": "^2.1.1", |
|
"archiver": "^5.0.2", |
|
"auto-bind": "^4.0.0", |
|
"aws-kcl": "^2.2.2", |
|
"aws-sdk": "^2.1455.0", |
|
"axios": "^0.21.1", |
|
"bcryptjs": "^2.4.3", |
|
"body-parser": "^1.20.1", |
|
"boxen": "^5.1.0", |
|
"bull": "^4.11.3", |
|
"bullmq": "^1.81.1", |
|
"clear": "^0.1.0", |
|
"clickhouse": "^2.6.0", |
|
"clickhouse-migrations": "^0.1.13", |
|
"colors": "^1.4.0", |
|
"compare-versions": "^6.0.0-rc.1", |
|
"cookie-parser": "^1.4.5", |
|
"cors": "^2.8.5", |
|
"cron": "^1.8.2", |
|
"crypto-js": "^4.0.0", |
|
"dataloader": "^2.0.0", |
|
"dayjs": "^1.11.9", |
|
"debug": "^4.3.4", |
|
"dotenv": "^8.2.0", |
|
"ejs": "^3.1.3", |
|
"emittery": "^0.7.1", |
|
"express": "^4.18.1", |
|
"extract-zip": "^2.0.1", |
|
"fast-levenshtein": "^2.0.6", |
|
"fs-extra": "^9.0.1", |
|
"glob": "^7.1.6", |
|
"graphql": "^15.3.0", |
|
"graphql-depth-limit": "^1.1.0", |
|
"graphql-type-json": "^0.3.2", |
|
"handlebars": "^4.7.6", |
|
"html-to-json-parser": "^1.1.0", |
|
"import-fresh": "^3.2.1", |
|
"inflection": "^1.12.0", |
|
"ioredis": "^5.3.2", |
|
"ioredis-mock": "^8.8.3", |
|
"is-docker": "^2.2.1", |
|
"isomorphic-dompurify": "^1.8.0", |
|
"jsep": "^1.3.6", |
|
"json5": "^2.2.3", |
|
"jsonfile": "^6.1.0", |
|
"jsonwebtoken": "^9.0.0", |
|
"kafkajs": "^2.2.4", |
|
"knex": "2.4.2", |
|
"list-github-dir-content": "^3.0.0", |
|
"lodash": "^4.17.19", |
|
"lru-cache": "^6.0.0", |
|
"mailersend": "^1.1.0", |
|
"marked": "^4.3.0", |
|
"minio": "^7.0.18", |
|
"mkdirp": "^2.1.3", |
|
"morgan": "^1.10.0", |
|
"mssql": "^10.0.0", |
|
"multer": "^1.4.5-lts.1", |
|
"mysql2": "^3.2.0", |
|
"nanoid": "^3.1.20", |
|
"nc-help": "0.3.1", |
|
"nc-lib-gui": "0.111.4", |
|
"nc-plugin": "^0.1.3", |
|
"ncp": "^2.0.0", |
|
"nestjs-kafka": "^1.0.6", |
|
"nestjs-throttler-storage-redis": "^0.3.0", |
|
"nocodb-sdk": "workspace:^", |
|
"nodemailer": "^6.4.10", |
|
"object-hash": "^3.0.0", |
|
"object-sizeof": "^2.6.1", |
|
"os-locale": "^6.0.2", |
|
"p-queue": "^6.6.2", |
|
"papaparse": "^5.4.0", |
|
"parse-database-url": "^0.3.0", |
|
"passport": "^0.4.1", |
|
"passport-auth-token": "^1.0.1", |
|
"passport-custom": "^1.1.1", |
|
"passport-github": "^1.1.0", |
|
"passport-google-oauth20": "^2.0.0", |
|
"passport-http": "^0.3.0", |
|
"passport-jwt": "^4.0.1", |
|
"passport-local": "^1.0.0", |
|
"pg": "^8.10.0", |
|
"redlock": "^5.0.0-beta.2", |
|
"reflect-metadata": "^0.1.13", |
|
"request-ip": "^2.1.3", |
|
"rmdir": "^1.2.0", |
|
"rxjs": "^7.2.0", |
|
"slash": "^3.0.0", |
|
"slug": "^8.2.2", |
|
"socket.io": "^4.4.1", |
|
"sql-query-identifier": "^2.5.0", |
|
"sqlite3": "^5.1.6", |
|
"tedious": "^16.4.0", |
|
"tinycolor2": "^1.4.2", |
|
"twilio": "^3.55.1", |
|
"unique-names-generator": "^4.3.1", |
|
"uuid": "^9.0.0", |
|
"validator": "^13.1.1", |
|
"xc-core-ts": "^0.1.0", |
|
"xlsx": "^0.18.5" |
|
}, |
|
"devDependencies": { |
|
"@nestjs/cli": "^10.1.10", |
|
"@nestjs/schematics": "^10.0.1", |
|
"@nestjs/testing": "^10.1.0", |
|
"@nestjsplus/dyn-schematics": "^1.0.12", |
|
"@types/ejs": "^3.1.2", |
|
"@types/express": "^4.17.17", |
|
"@types/jest": "^29.5.2", |
|
"@types/mocha": "^10.0.1", |
|
"@types/multer": "^1.4.7", |
|
"@types/node": "20.3.1", |
|
"@types/passport-google-oauth20": "^2.0.11", |
|
"@types/passport-jwt": "^3.0.8", |
|
"@types/supertest": "^2.0.12", |
|
"@typescript-eslint/eslint-plugin": "^6.7.0", |
|
"@typescript-eslint/parser": "^6.7.0", |
|
"chai": "^4.2.0", |
|
"copy-webpack-plugin": "^11.0.0", |
|
"cross-env": "^7.0.3", |
|
"eslint": "^8.33.0", |
|
"eslint-config-prettier": "^8.8.0", |
|
"eslint-plugin-eslint-comments": "^3.2.0", |
|
"eslint-plugin-functional": "^5.0.8", |
|
"eslint-plugin-import": "^2.27.5", |
|
"eslint-plugin-prettier": "^4.2.1", |
|
"jest": "29.5.0", |
|
"mocha": "^10.1.0", |
|
"nodemon": "^3.0.1", |
|
"prettier": "^2.7.1", |
|
"source-map-support": "^0.5.20", |
|
"supertest": "^6.3.3", |
|
"ts-jest": "29.0.5", |
|
"ts-loader": "^9.2.3", |
|
"ts-node": "^10.9.1", |
|
"tsconfig-paths": "^4.2.0", |
|
"typescript": "^5.1.3", |
|
"webpack-cli": "^5.1.4" |
|
}, |
|
"jest": { |
|
"moduleFileExtensions": [ |
|
"js", |
|
"json", |
|
"ts" |
|
], |
|
"rootDir": "src", |
|
"testRegex": ".*\\.spec\\.ts$", |
|
"transform": { |
|
"^.+\\.(t|j)s$": "ts-jest" |
|
}, |
|
"collectCoverageFrom": [ |
|
"**/*.(t|j)s" |
|
], |
|
"coverageDirectory": "../coverage", |
|
"testEnvironment": "node" |
|
} |
|
}
|
|
|