2022-12-01 17:58:08 +03:00
|
|
|
{
|
2023-12-10 20:10:54 +03:00
|
|
|
"name": "twenty-server",
|
2023-12-22 01:52:45 +03:00
|
|
|
"version": "0.2.2",
|
2022-12-01 17:58:08 +03:00
|
|
|
"description": "",
|
|
|
|
"author": "",
|
|
|
|
"private": true,
|
2024-01-05 16:59:58 +03:00
|
|
|
"license": "AGPL-3.0",
|
2022-12-01 17:58:08 +03:00
|
|
|
"scripts": {
|
2024-01-04 18:39:57 +03:00
|
|
|
"nx": "NX_DEFAULT_PROJECT=twenty-server node ../../node_modules/nx/bin/nx.js",
|
2022-12-01 17:58:08 +03:00
|
|
|
"prebuild": "rimraf dist",
|
2023-12-20 16:50:10 +03:00
|
|
|
"build": "yarn prebuild && nest build",
|
2022-12-01 17:58:08 +03:00
|
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
2023-07-26 02:37:22 +03:00
|
|
|
"start": "set NODE_ENV=development && nest start",
|
2022-12-01 17:58:08 +03:00
|
|
|
"start:dev": "nest start --watch",
|
|
|
|
"start:debug": "nest start --debug --watch",
|
2023-10-24 15:41:52 +03:00
|
|
|
"start:prod": "node dist/src/main",
|
2023-05-29 23:42:24 +03:00
|
|
|
"lint": "eslint \"src/**/*.ts\" --fix",
|
2022-12-01 17:58:08 +03:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
"test:cov": "jest --coverage",
|
2024-01-04 18:39:57 +03:00
|
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register ../../node_modules/.bin/jest --runInBand",
|
2023-07-28 01:22:10 +03:00
|
|
|
"test:e2e": "./scripts/run-integration.sh",
|
2024-01-04 18:39:57 +03:00
|
|
|
"typeorm": "ts-node -r tsconfig-paths/register ../../node_modules/typeorm/cli.js",
|
2023-11-22 16:12:39 +03:00
|
|
|
"typeorm:migrate": "yarn typeorm migration:run -d ./src/database/typeorm/metadata/metadata.datasource.ts && yarn typeorm migration:run -d ./src/database/typeorm/core/core.datasource.ts",
|
2023-12-02 20:37:45 +03:00
|
|
|
"database:init": "yarn database:setup && yarn database:seed:dev",
|
2023-11-19 20:25:47 +03:00
|
|
|
"database:setup": "npx ts-node ./scripts/setup-db.ts && yarn database:migrate",
|
2024-01-03 16:25:24 +03:00
|
|
|
"database:setup:prod": "npx ts-node ./scripts/setup-db.ts && yarn typeorm:migrate",
|
2023-10-27 18:48:06 +03:00
|
|
|
"database:truncate": "npx ts-node ./scripts/truncate-db.ts",
|
2023-11-19 20:25:47 +03:00
|
|
|
"database:migrate": "yarn build && yarn typeorm:migrate",
|
2023-12-02 20:37:45 +03:00
|
|
|
"database:seed:dev": "yarn build && yarn command workspace:seed:dev",
|
|
|
|
"database:seed:demo": "yarn build && yarn command workspace:seed:demo",
|
2023-10-27 19:08:59 +03:00
|
|
|
"database:reset": "yarn database:truncate && yarn database:init",
|
2023-12-14 20:57:25 +03:00
|
|
|
"command": "node dist/src/command",
|
|
|
|
"queue:work": "node dist/src/queue-worker"
|
2022-12-01 17:58:08 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-12-11 12:54:57 +03:00
|
|
|
"@graphql-yoga/nestjs": "patch:@graphql-yoga/nestjs@2.1.0#./patches/@graphql-yoga+nestjs+2.1.0.patch",
|
|
|
|
"@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",
|
2024-01-05 16:59:58 +03:00
|
|
|
"class-validator": "patch:class-validator@^0.14.0#./patches/class-validator+0.14.0.patch"
|
2023-12-11 12:54:57 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-01-05 16:59:58 +03:00
|
|
|
"node": "^18.17.1",
|
2023-12-11 12:54:57 +03:00
|
|
|
"npm": "please-use-yarn",
|
|
|
|
"yarn": "^4.0.2"
|
2022-12-01 17:58:08 +03:00
|
|
|
}
|
2023-12-23 12:08:55 +03:00
|
|
|
}
|