-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 4.53 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "one-piece-trip",
"version": "0.0.1",
"description": "one piece trip server",
"author": "one-piece",
"contributors": [
"11",
"Ivonne",
"Mina",
"Evena"
],
"repository": {
"type": "git",
"url": "https://github.com/one-piece-team1/one-piece-trip.git"
},
"engines": {
"node": ">=10"
},
"private": false,
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"build:docker": "docker build -t libterty8186/one-piece-trip .",
"build:test": "docker build -t one-piece-trip-build-test .",
"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/src/main",
"generate": "node --max_old_space_size=8192 dist/src/libs/loaddbf.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --detectOpenHandles --coverage --forceExit && (codecov || echo 'warning: ignoring codecov failure')",
"test:watch": "jest --watch --forceExit",
"test:file": "jest --detectOpenHandles --forceExit",
"test:cov": "jest --coverage --forceExit",
"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",
"ci:process": "circleci config process .circleci/config.yml > process.yml",
"ci:build": "circleci local execute -c process.yml --job build",
"ci:test": "circleci local execute -c process.yml --job test"
},
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/cqrs": "^7.0.1",
"@nestjs/jwt": "^7.2.0",
"@nestjs/microservices": "^7.6.5",
"@nestjs/passport": "^7.1.5",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/platform-fastify": "^7.5.1",
"@nestjs/swagger": "^4.6.1",
"@nestjs/terminus": "^7.1.2",
"@nestjs/typeorm": "^7.1.4",
"amqp-connection-manager": "^3.2.1",
"amqplib": "^0.6.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cloudinary": "^1.23.0",
"codecov": "^3.8.1",
"dbffile": "^1.5.0",
"dotenv": "^8.2.0",
"fastify-cors": "^4.1.0",
"fastify-swagger": "^3.5.0",
"form-data": "^3.0.0",
"geojson": "^0.5.0",
"ioredis": "^4.19.2",
"lodash": "^4.17.20",
"nanoid": "^3.1.20",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"proxy-addr": "^2.0.6",
"reflect-metadata": "^0.1.13",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.6.15",
"@types/amqplib": "^0.5.17",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.3",
"@types/form-data": "^2.5.0",
"@types/geojson": "^7946.0.7",
"@types/ioredis": "^4.17.7",
"@types/jest": "26.0.10",
"@types/lodash": "^4.14.165",
"@types/node": "^13.9.1",
"@types/passport": "^1.0.5",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/proxy-addr": "^2.0.0",
"@types/request-promise": "^4.1.46",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.5",
"jest": "26.4.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "26.2.0",
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"jest": {
"clearMocks": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"src/audits",
"src/libs",
"src/subscribers",
"src/publishers",
"src/handlers"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"collectCoverage": true,
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "sh scripts/precommit.sh",
"pre-push": "sh scripts/prepublish.sh"
}
}
}