-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
81 lines (81 loc) · 2.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ibf-api-service",
"author": "IBF-system",
"homepage": "",
"main": "index.js",
"scripts": {
"lint": "eslint \"**/*.ts\"",
"fix": "npm run lint -- --fix",
"lint:syntax": "prettier --check \"**/*.{md,js,ts,scss,html}\" ",
"prestart": "npm run migration:run && ts-node src/scripts seed-prod",
"start": "node index.js",
"prestart:dev": "npm run migration:run && ts-node src/scripts seed-prod",
"start:dev": "npx tsc-watch --onSuccess \" node index.js \" --onFailure \"echo There was a problem with the build!\" -p tsconfig.json",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js",
"test": "jest --config=jest.json --detectOpenHandles --forceExit",
"test:dev": "npm test -- --watchAll",
"test:coverage": "npm test -- --coverage --coverageDirectory=coverage",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:generate": "npm run typeorm migration:generate -- -d ./appdatasource.ts",
"migration:run": "npm run typeorm migration:run -- -d ./appdatasource.ts",
"migration:revert": "npm run typeorm migration:revert -- -d ./appdatasource.ts",
"migration:create": "npm run typeorm migration:create -- "
},
"private": true,
"dependencies": {
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.4.7",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/schedule": "^3.0.2",
"@nestjs/swagger": "^8.0.2",
"@nestjs/terminus": "^10.2.3",
"@nestjs/testing": "^10.1.3",
"@nestjs/typeorm": "^10.0.0",
"axios": "^1.7.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"csv-parser": "^3.0.0",
"date-fns": "^3.6.0",
"ejs": "^3.1.10",
"jsonwebtoken": "^9.0.2",
"juice": "^11.0.0",
"mailchimp-api-v3": "^1.15.0",
"mjml": "^4.15.3",
"mysql": "^2.15.0",
"pg": "^8.13.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"twilio": "^5.4.0",
"typeorm": "^0.3.6",
"typescript": "^4.9.5"
},
"devDependencies": {
"@automock/adapters.nestjs": "^2.1.0",
"@automock/jest": "^2.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"atob": ">=2.1.0",
"deep-extend": ">=0.5.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "28.x",
"eslint-plugin-prettier": "^5.2.1",
"extend": ">=3.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.0",
"tsconfig-paths": "^3.9.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"yargs": "^17.0.0"
}
}