-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.48 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.48 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
102
103
104
105
106
107
108
{
"name": "kinship-api",
"version": "0.0.1",
"description": "Kinship API",
"author": "Eros",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"seeds": "ts-node -r tsconfig-paths/register ./src/database/seed.ts",
"migration:refresh:seed": "npm run typeorm schema:drop && npm run typeorm migration:run && npm run seeds ",
"envsub:ormconfig": "envsub --protect ormconfig.template.json ormconfig.json",
"envsub:postgres": "envsub --protect docker/postgres/.env.template docker/postgres/.env",
"envsub:env": "envsub --protect .env.template .env",
"envsub:all": "npm run envsub:env && npm run envsub:ormconfig && npm run envsub:postgres"
},
"dependencies": {
"@nest-modules/mailer": "^1.1.3",
"@nestjs/common": "^6.3.1",
"@nestjs/core": "6.3.1",
"@nestjs/graphql": "^6.2.4",
"@nestjs/microservices": "^6.3.1",
"@nestjs/platform-express": "^6.3.1",
"@nestjs/typeorm": "^6.1.2",
"@sindresorhus/slugify": "^0.9.1",
"@types/nodemailer-mailgun-transport": "^1.4.0",
"apollo-server-express": "^2.4.8",
"aws-sdk": "^2.501.0",
"bcrypt": "^3.0.3",
"dotenv": "^8.0.0",
"easyimage": "^3.1.1",
"geojson": "^0.5.0",
"graphql": "^14.1.1",
"graphql-geojson": "^1.0.0",
"graphql-tools": "^4.0.4",
"graphql-type-json": "^0.2.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.4.0",
"multer-s3": "^2.9.0",
"nodemailer-mailgun-transport": "^1.4.0",
"pdfkit": "^0.9.1",
"pg": "^7.8.0",
"qrcode": "^1.3.3",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.2.2",
"tedis": "^0.1.6",
"tslint-eslint-rules": "^5.4.0",
"typeorm": "^0.2.17",
"typeorm-seeding": "^1.0.0-beta.6",
"typescript": "^3.0.1",
"uuid": "^3.3.2",
"wkx": "^0.4.6"
},
"devDependencies": {
"@nestjs/testing": "^6.3.1",
"@types/bcrypt": "3.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.0",
"@types/fluent-ffmpeg": "^2.1.9",
"@types/graphql": "^14.0.5",
"@types/jest": "^23.3.1",
"@types/jsonwebtoken": "8.3.0",
"@types/multer": "^1.3.7",
"@types/node": "10.14.4",
"@types/pdfkit": "^0.7.36",
"@types/qrcode": "^1.3.3",
"@types/supertest": "^2.0.5",
"@types/uuid": "^3.4.4",
"envsub": "^3.0.9",
"fluent-ffmpeg": "^2.1.2",
"jest": "^24.8.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"supertest": "^3.1.0",
"ts-jest": "^24.0.2",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "5.11.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}