-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.76 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.76 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@impler/api",
"version": "1.9.0",
"author": "implerhq",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "pnpm start:dev",
"start:dev": "cross-env TZ=UTC nest start --watch",
"start:test": "cross-env NODE_ENV=test PORT=1336 TZ=UTC nest start --watch",
"start:debug": "TZ=UTC nodemon --config nodemon-debug.json",
"start:prod": "TZ=UTC node dist/main.js",
"lint": "eslint src",
"lint:fix": "pnpm lint -- --fix",
"migration": "cross-env NODE_ENV=local MIGRATION=true ts-node --require tsconfig-paths/register --transpileOnly",
"migration:prod": "cross-env NODE_ENV=prod MIGRATION=true ts-node --require tsconfig-paths/register --transpileOnly",
"migration:dev": "cross-env NODE_ENV=dev MIGRATION=true ts-node --require tsconfig-paths/register --transpileOnly",
"migration:test": "cross-env NODE_ENV=test MIGRATION=true ts-node --require tsconfig-paths/register --transpileOnly",
"test": "cross-env TZ=UTC NODE_ENV=test E2E_RUNNER=true mocha --timeout 10000 --require ts-node/register --exit"
},
"dependencies": {
"@amplitude/analytics-node": "^1.3.6",
"@faker-js/faker": "^8.4.1",
"@impler/client": "workspace:^",
"@impler/dal": "workspace:^",
"@impler/services": "workspace:^",
"@impler/shared": "workspace:^",
"@nestjs/common": "^10.4.4",
"@nestjs/core": "^10.4.4",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/platform-socket.io": "10.4.4",
"@nestjs/platform-ws": "10.4.4",
"@nestjs/schedule": "^4.1.1",
"@nestjs/swagger": "^7.4.2",
"@nestjs/terminus": "^10.2.3",
"@nestjs/websockets": "10.4.4",
"@sentry/node": "^7.112.2",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"async-mutex": "^0.4.0",
"axios": "1.8.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cron": "^3.1.9",
"cron-parser": "^4.9.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.11",
"dotenv": "^16.0.2",
"envalid": "^7.3.1",
"exceljs": "^4.4.0",
"hat": "^0.0.3",
"jsonwebtoken": "^9.0.0",
"jszip": "^3.10.1",
"nodemailer": "^6.9.3",
"papaparse": "^5.4.1",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.1",
"passport-oauth2": "^1.6.1",
"rimraf": "^3.0.2",
"sax": "^1.4.1",
"socket.io": "^4.7.2",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
"xlsx-populate": "^1.21.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.4",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/hat": "^0.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^10.0.0",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.18",
"@types/nodemailer": "^6.4.8",
"@types/papaparse": "^5.3.7",
"@types/passport": "^1.0.11",
"@types/passport-github2": "^1.2.5",
"@types/passport-jwt": "^3.0.8",
"@types/passport-oauth2": "^1.4.11",
"@types/sax": "^1.2.7",
"@types/uuid": "^9.0.2",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"main": ".eslintrc.js",
"keywords": [],
"description": ""
}