mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-23 22:12:24 +03:00
67 lines
3.0 KiB
JSON
67 lines
3.0 KiB
JSON
{
|
|
"name": "twenty-server",
|
|
"version": "0.3.2",
|
|
"description": "",
|
|
"author": "",
|
|
"private": true,
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"nx": "NX_DEFAULT_PROJECT=twenty-server node ../../node_modules/nx/bin/nx.js",
|
|
"prebuild": "rimraf dist",
|
|
"build": "npx nx prebuild && nest build --path ./tsconfig.build.json",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"start": "NODE_ENV=development && nest start",
|
|
"start:dev": "npx nx start --watch",
|
|
"start:debug": "npx nx start:dev --debug",
|
|
"start:prod": "node dist/src/main",
|
|
"lint": "eslint \"src/**/*.ts\" --fix",
|
|
"test": "jest",
|
|
"test:watch": "npx nx test --watch",
|
|
"test:cov": "npx nx test --coverage",
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register ../../node_modules/.bin/jest --runInBand",
|
|
"test:e2e": "./scripts/run-integration.sh",
|
|
"typeorm": "npx ts-node ../../node_modules/typeorm/cli.js",
|
|
"database:init": "npx nx database:setup && npx nx database:seed:dev",
|
|
"database:setup": "npx ts-node ./scripts/setup-db.ts && npx nx database:migrate",
|
|
"database:truncate": "npx ts-node ./scripts/truncate-db.ts",
|
|
"database:migrate": "npx nx typeorm -- migration:run -d src/database/typeorm/metadata/metadata.datasource && npx nx typeorm -- migration:run -d src/database/typeorm/core/core.datasource",
|
|
"database:seed:dev": "npx nx command -- workspace:seed:dev",
|
|
"database:seed:demo": "npx nx command -- workspace:seed:demo",
|
|
"database:reset": "npx nx database:truncate && npx nx database:init",
|
|
"command": "node dist/src/command/command",
|
|
"queue:work": "node dist/src/queue-worker/queue-worker",
|
|
"database:migrate:prod": "npx -y typeorm migration:run -d dist/src/database/typeorm/metadata/metadata.datasource && npx -y typeorm migration:run -d dist/src/database/typeorm/core/core.datasource"
|
|
},
|
|
"dependencies": {
|
|
"@graphql-yoga/nestjs": "patch:@graphql-yoga/nestjs@2.1.0#./patches/@graphql-yoga+nestjs+2.1.0.patch",
|
|
"@nestjs/cache-manager": "^2.2.1",
|
|
"@nestjs/devtools-integration": "^0.1.6",
|
|
"@nestjs/graphql": "patch:@nestjs/graphql@12.0.8#./patches/@nestjs+graphql+12.0.8.patch",
|
|
"@ptc-org/nestjs-query-graphql": "patch:@ptc-org/nestjs-query-graphql@4.2.0#./patches/@ptc-org+nestjs-query-graphql+4.2.0.patch",
|
|
"cache-manager": "^5.4.0",
|
|
"cache-manager-redis-yet": "^4.1.2",
|
|
"class-validator": "patch:class-validator@0.14.0#./patches/class-validator+0.14.0.patch",
|
|
"graphql-middleware": "^6.1.35",
|
|
"passport": "^0.7.0",
|
|
"psl": "^1.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "10.3.0",
|
|
"@nx/js": "17.2.8",
|
|
"@types/lodash.isempty": "^4.4.7",
|
|
"@types/lodash.isequal": "^4.5.8",
|
|
"@types/lodash.isobject": "^3.0.7",
|
|
"@types/lodash.omit": "^4.5.9",
|
|
"@types/lodash.snakecase": "^4.1.7",
|
|
"@types/lodash.upperfirst": "^4.3.7",
|
|
"@types/react": "^18.2.39",
|
|
"rimraf": "^5.0.5",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": "^18.17.1",
|
|
"npm": "please-use-yarn",
|
|
"yarn": "^4.0.2"
|
|
}
|
|
}
|