-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nestjs-google-drive-upload",
"version": "0.0.1",
"description": "a nestjs google drive upload app",
"author": "https://github.com/allohamora",
"private": true,
"license": "UNLICENSED",
"scripts": {
"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 --config ./jest.config.cjs",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"prepare": "husky",
"typeorm": "typeorm-ts-node-commonjs --dataSource src/database/data-source.ts",
"migration:generate": "npm run typeorm migration:generate src/database/migrations/$npm_config_name",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert"
},
"dependencies": {
"@googleapis/drive": "^8.16.0",
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/swagger": "^11.0.6",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"mime-types": "^2.1.35",
"nest-typed-config": "^2.9.4",
"pg": "^8.13.3",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.21",
"typeorm-naming-strategies": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.7",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.7",
"@types/pluralize": "^0.0.33",
"@types/supertest": "^6.0.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-openapi": "^0.14.2",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"lint-staged": {
"*.{js,cjs,mjs,json,yml,md}": "prettier --write",
"*.ts": "eslint --fix"
},
"overrides": {
"jest-openapi": {
"openapi-validator": {
"axios": "^1.6.0"
}
}
},
"engines": {
"node": ">=v22.13.0",
"npm": ">=10.9.2"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/allohamora/nestjs-google-drive-upload.git"
},
"homepage": "https://github.com/allohamora/nestjs-google-drive-upload#readme"
}