-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.69 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.69 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "basic-acl-api",
"version": "2.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "18.18.2",
"npm": "10.4.0"
},
"scripts": {
"postinstall": "husky install",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.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": "jest --config ./test/jest-e2e.json",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --dataSource ./src/config/orm.config.ts",
"migration:create": "npm run typeorm migration:generate -- ",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert",
"schema:drop": "npm run typeorm schema:drop",
"schema:sync": "npm run typeorm schema:sync",
"seed:run": "npx ts-node ./src/database/seeds"
},
"dependencies": {
"@apollo/server": "4.10.0",
"@nestjs/apollo": "12.0.11",
"@nestjs/axios": "3.0.1",
"@nestjs/common": "10.2.8",
"@nestjs/config": "3.1.1",
"@nestjs/core": "10.2.8",
"@nestjs/graphql": "12.0.11",
"@nestjs/platform-express": "10.2.8",
"@nestjs/terminus": "10.1.1",
"@nestjs/typeorm": "10.0.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"dataloader": "2.2.2",
"firebase": "10.5.2",
"firebase-admin": "11.11.1",
"form-data": "4.0.0",
"graphql": "16.8.1",
"graphql-type-json": "0.3.2",
"graphql-upload": "13.0.0",
"handlebars": "4.7.8",
"hash-wasm": "4.9.0",
"hbs": "4.2.0",
"joi": "17.11.0",
"mailgun.js": "9.3.0",
"mjml": "4.14.1",
"nanoid": "3.3.7",
"pg": "8.11.3",
"redis": "4.6.10",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"typeorm": "0.3.17"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@nestjs/cli": "10.3.0",
"@nestjs/schematics": "10.0.3",
"@nestjs/testing": "10.2.8",
"@types/express": "4.17.21",
"@types/jest": "29.5.11",
"@types/node": "18.18.9",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"commitizen": "4.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"jest": "jest",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"supertest": "6.3.3",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"npm run lint"
],
"*.ts": [
"npm run lint"
]
},
"comments": {
"dependencies": {
"graphql-upload": "couldn't update cuz pure ESM compatibility",
"nanoid": "couldn't update cuz pure ESM compatibility"
}
}
}