-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.56 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "quantam-core",
"version": "0.0.1",
"description": "Quantam Core",
"author": "Pritam Sarkar <[email protected]> (https://github.com/pritam001)",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"start": "nest start | bunyan",
"start:dev": "nest start --watch | bunyan",
"start:debug": "nest start --debug --watch | bunyan",
"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/e2e/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/config": "2.2.0",
"@nestjs/core": "^9.0.5",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/schedule": "0.4.1",
"@nestjs/swagger": "4.6.1",
"@nestjs/typeorm": "7.1.4",
"axios": "0.28.0",
"bunyan": "1.8.14",
"bunyan-format": "0.2.1",
"class-transformer": "0.3.1",
"class-validator": "0.12.2",
"data-forge": "1.8.12",
"eslint-plugin-simple-import-sort": "5.0.3",
"joi": "17.2.1",
"kiteconnect": "4.1.0",
"pg": "8.4.1",
"reflect-metadata": "0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"swagger-ui-express": "4.1.4",
"typeorm": "0.3.20"
},
"devDependencies": {
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^8.0.11",
"@nestjs/testing": "^7.5.5",
"@types/express": "^4.17.3",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.19",
"@types/node": "^14.14.20",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"husky": "4.3.0",
"jest": "26.6.3",
"jest-mock-extended": "1.0.10",
"lint-staged": "10.4.2",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"ts-loader": "^8.0.13",
"ts-jest": "26.4.4",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"class-validator": "^0.12.2",
"class-transformer": "^0.3.1"
},
"lint-staged": {
"{src,test}/**/*.{js,ts}": [
"npm run format",
"npm run lint",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "",
"testRegex": ".(test|spec).(js|ts)$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.(js|ts)"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pritam001/quantam-core.git"
},
"keywords": [
"quantam"
],
"bugs": {
"url": "https://github.com/pritam001/quantam-core/issues"
},
"homepage": "https://github.com/pritam001/quantam-core#readme"
}