-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3 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
{
"name": "api_visiteici",
"version": "0.1.0",
"description": "<p align=\"center\">\r <a href=\"http://nestjs.com/\" target=\"blank\"><img src=\"https://nestjs.com/img/logo-small.svg\" width=\"200\" alt=\"Nest Logo\" /></a>\r </p>",
"author": "",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "20"
},
"scripts": {
"build": "chmod +x ./build.sh && ./build.sh",
"pack:build:nocache": "npm run pack:build -- --clear-cache",
"pack:build": "pack build api-rocket --path ./",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"dev": "npm run container:restart",
"dev:reset": "npm run pack:build:nocache && npm run container:restart",
"dev:debug": "nest start --debug --watch",
"container:up": "bash dc.sh up",
"container:down": "bash dc.sh down",
"container:restart": "npm run container:down && npm run container:up",
"start": "./entrypoint.sh",
"start:dev": "nest start --debug --watch",
"start:prod": "nest start",
"start:migrate:prod": "prisma migrate deploy && npm run start:prod",
"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",
"prisma:migrate": "prisma migrate dev",
"prisma:format": "prisma format",
"prisma:migrate:reset:database": "prisma migrate reset"
},
"dependencies": {
"@nestjs/bullmq": "^10.2.2",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/serve-static": "^4.0.2",
"@prisma/client": "5.7.1",
"bullmq": "^5.26.2",
"cloudinary": "^2.0.1",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.7",
"pusher": "^5.1.3",
"pusher-js": "^8.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.3.0",
"@types/express": "^4.17.13",
"@types/jest": "29.2.4",
"@types/multer": "^1.4.11",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.3.1",
"prettier": "^2.3.2",
"prisma": "^5.9.1",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "4.1.1",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"main": ".eslintrc.js",
"directories": {
"test": "test"
},
"keywords": []
}