mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-24 06:48:42 +03:00
f7034d6e7d
* Upgrade to node 18.17.1 and regroup dependencies in root package.json * Sort package.json * Fix lint * Migrate zapier
48 lines
2.3 KiB
JSON
48 lines
2.3 KiB
JSON
{
|
|
"name": "twenty-server",
|
|
"version": "0.2.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": "yarn prebuild && nest build",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"start": "set NODE_ENV=development && nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/src/main",
|
|
"lint": "eslint \"src/**/*.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": "./scripts/run-integration.sh",
|
|
"typeorm": "ts-node -r tsconfig-paths/register ../../node_modules/typeorm/cli.js",
|
|
"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",
|
|
"database:init": "yarn database:setup && yarn database:seed:dev",
|
|
"database:setup": "npx ts-node ./scripts/setup-db.ts && yarn database:migrate",
|
|
"database:setup:prod": "npx ts-node ./scripts/setup-db.ts && yarn typeorm:migrate",
|
|
"database:truncate": "npx ts-node ./scripts/truncate-db.ts",
|
|
"database:migrate": "yarn build && yarn typeorm:migrate",
|
|
"database:seed:dev": "yarn build && yarn command workspace:seed:dev",
|
|
"database:seed:demo": "yarn build && yarn command workspace:seed:demo",
|
|
"database:reset": "yarn database:truncate && yarn database:init",
|
|
"command": "node dist/src/command",
|
|
"queue:work": "node dist/src/queue-worker"
|
|
},
|
|
"dependencies": {
|
|
"@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",
|
|
"class-validator": "patch:class-validator@^0.14.0#./patches/class-validator+0.14.0.patch"
|
|
},
|
|
"engines": {
|
|
"node": "^18.17.1",
|
|
"npm": "please-use-yarn",
|
|
"yarn": "^4.0.2"
|
|
}
|
|
}
|