-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"build": "node --max_old_space_size=4096 ./node_modules/gulp/bin/gulp.js build",
"fix": "tslint -p tsconfig.json -c tslint.json --fix",
"prepublish": "node --max_old_space_size=4096 ./node_modules/gulp/bin/gulp.js build",
"publish": "node ./node_modules/lerna/bin/lerna.js publish -m \"chore(release): publish %s\"",
"start": "node ./starter/index.js",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"check": "tslint -p tsconfig.json -c tslint.json",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@nestjs/graphql": "6.2.1",
"@nestjs/common": "6.2.2",
"@nestjs/core": "6.2.2",
"@nestjs/microservices": "6.2.2",
"@nestjs/testing": "6.2.2",
"@nestjs/typeorm": "6.1.1",
"@nestjs/websockets": "6.2.2",
"@types/ejs": "2.6.3",
"@types/nodemailer": "6.1.0",
"apollo-server-express": "2.5.0",
"ejs": "2.6.1",
"email-templates": "4.0.4",
"graphql": "14.3.0",
"graphql-type-json": "0.3.0",
"graphql-tools": "4.0.4",
"nodemailer": "6.1.1",
"pg": "7.11.0",
"pug": "2.0.3",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.2",
"typeorm": "0.2.27",
"typescript": "3.4.5",
"snyk": "^1.258.2"
},
"devDependencies": {
"@types/express": "4.16.1",
"@notadd/gulp-typescript": "4.0.2",
"@types/chance": "1.0.4",
"@types/graphql": "14.2.0",
"@types/node": "10.14.7",
"@types/request": "2.47.1",
"gulp": "4.0.2",
"gulp-clang-format": "1.0.27",
"gulp-nodemon": "2.2.1",
"gulp-rename": "1.4.0",
"gulp-sequence": "1.0.0",
"gulp-tslint": "8.1.4",
"gulp-sourcemaps": "2.6.5",
"gulp-watch": "5.0.1",
"lerna": "3.14.1",
"nodemon": "1.19.0",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typescript": "3.4.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
},
"snyk": true
}