-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.58 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
{
"name": "NestServer",
"version": "0.0.0",
"description": "Nestjs GraphQL Server",
"author": "Alexi Taylor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexitaylor/angular-nestjs-express-postgres-starter-kit"
},
"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",
"seedData": "ts-node database/seeds/index.ts "
},
"dependencies": {
"@nestjs/common": "6.5.3",
"@nestjs/core": "6.5.3",
"@nestjs/graphql": "6.4.2",
"@nestjs/passport": "^6.1.1",
"@nestjs/platform-express": "^6.5.3",
"@nestjs/typeorm": "6.1.3",
"@nestjs/websockets": "6.5.3",
"apollo-server-express": "2.8.1",
"axios": "^0.19.0",
"bcryptjs": "2.4.3",
"class-validator": "0.9.1",
"dotenv": "^8.2.0",
"faker": "4.1.0",
"graphql": "14.4.2",
"graphql-iso-date": "^3.6.1",
"graphql-tools": "4.0.5",
"jsonwebtoken": "8.5.1",
"jwks-rsa": "^1.6.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^7.17.0",
"reflect-metadata": "0.1.13",
"rimraf": "2.6.3",
"rxjs": "6.5.2",
"slugify": "^1.3.6",
"typeorm": "^0.2.22",
"typescript": "3.5.3"
},
"devDependencies": {
"@nestjs/testing": "6.5.3",
"@types/bcryptjs": "2.4.2",
"@types/express": "4.17.0",
"@types/jest": "24.0.17",
"@types/jsonwebtoken": "8.3.2",
"@types/node": "^13.1.6",
"@types/supertest": "2.0.8",
"chalk": "2.4.2",
"jest": "24.8.0",
"nodemon": "1.19.1",
"prettier": "1.18.2",
"reflect-metadata": "0.1.13",
"supertest": "4.0.2",
"ts-jest": "24.0.2",
"ts-loader": "6.0.4",
"ts-node": "8.3.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.18.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"engines": {
"node": "12.10.0"
}
}