-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.67 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
{
"name": "@convictionsai/api",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "tsc",
"start:local": "concurrently --handle-input \"wait-on dist/main.js && ENVIRONMENT=local nodemon dist/main.js\" \"tsc -w -p tsconfig.json\" ",
"start:development": "concurrently --handle-input \"wait-on dist/main.js && ENVIRONMENT=development TZ=UTC nodemon dist/main.js\" \"tsc -w -p tsconfig.json\" ",
"release": "rm -rf dist && tsc && npm version patch && npm publish --access=private",
"test": "jest --setupFiles dotenv/config --detectOpenHandles",
"test:seed": "jest --setupFiles dotenv/config --detectOpenHandles --forceExit test/seed/BillingSeed.ts"
},
"dependencies": {
"@nestjs.pro/amqp": "^0.0.38",
"@nestjs.pro/logger": "^0.0.3",
"@nestjs/common": "^9.0.9",
"@nestjs/core": "^9.0.9",
"@nestjs/platform-express": "^9.3.12",
"@nestjs/swagger": "^6.0.5",
"@nestjs/typeorm": "^9.0.1",
"@prisma/client": "^4.12.0",
"amqplib": "^0.10.2",
"aws-sdk": "^2.1214.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"date-fns": "^2.29.3",
"dotenv": "^16.0.1",
"express-basic-auth": "^1.2.1",
"mysql": "^2.18.1",
"openai": "^3.2.1",
"rxjs": "^7.5.6",
"swagger-ui-express": "^4.5.0",
"typeorm": "^0.3.7"
},
"devDependencies": {
"@nestjs/testing": "^9.0.9",
"@types/amqplib": "^0.8.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.3",
"axios": "^1.2.6",
"concurrently": "^7.3.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.8.4",
"prisma": "^4.12.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"wait-on": "^6.0.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": "Test.ts$|Seed.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"prettier": {
"printWidth": 200,
"tabWidth": 4,
"bracketSameLine": true,
"singleQuote": true,
"arrowParens": "avoid",
"semi": true,
"trailingComma": "none",
"bracketSpacing": true
}
}