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.
84 lines
2.3 KiB
84 lines
2.3 KiB
{ |
|
"name": "nest-sample-proj", |
|
"version": "0.0.1", |
|
"description": "", |
|
"author": "", |
|
"private": true, |
|
"license": "UNLICENSED", |
|
"scripts": { |
|
"build": "nest build", |
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
|
"start": "nest start", |
|
"start:dev": "nest start --watch", |
|
"start:debug": "nest start --debug --watch", |
|
"start:prod": "node dist/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" |
|
}, |
|
"dependencies": { |
|
"@nestjs/common": "^9.0.0", |
|
"@nestjs/core": "^9.0.0", |
|
"@nestjs/jwt": "^10.0.3", |
|
"@nestjs/mapped-types": "*", |
|
"@nestjs/platform-express": "^9.0.0", |
|
"bcryptjs": "^2.4.3", |
|
"cors": "^2.8.5", |
|
"dayjs": "^1.11.7", |
|
"knex": "^2.4.2", |
|
"nanoid": "^3.1.20", |
|
"nocodb-sdk": "^0.106.0-beta.0", |
|
"parse-database-url": "^0.3.0", |
|
"passport-jwt": "^4.0.1", |
|
"pg": "^8.10.0", |
|
"reflect-metadata": "^0.1.13", |
|
"rxjs": "^7.2.0", |
|
"sqlite3": "^5.1.6", |
|
"uuid": "^9.0.0" |
|
}, |
|
"devDependencies": { |
|
"@nestjs/cli": "^9.0.0", |
|
"@nestjs/schematics": "^9.0.0", |
|
"@nestjs/testing": "^9.0.0", |
|
"@nestjsplus/dyn-schematics": "^1.0.12", |
|
"@types/express": "^4.17.13", |
|
"@types/jest": "29.5.0", |
|
"@types/node": "18.15.11", |
|
"@types/passport-jwt": "^3.0.8", |
|
"@types/supertest": "^2.0.11", |
|
"@typescript-eslint/eslint-plugin": "^5.0.0", |
|
"@typescript-eslint/parser": "^5.0.0", |
|
"eslint": "^8.0.1", |
|
"eslint-config-prettier": "^8.3.0", |
|
"eslint-plugin-prettier": "^4.0.0", |
|
"jest": "29.5.0", |
|
"prettier": "^2.3.2", |
|
"source-map-support": "^0.5.20", |
|
"supertest": "^6.1.3", |
|
"ts-jest": "29.0.5", |
|
"ts-loader": "^9.2.3", |
|
"ts-node": "^10.0.0", |
|
"tsconfig-paths": "4.2.0", |
|
"typescript": "^4.7.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" |
|
} |
|
}
|
|
|