-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.85 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.85 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
109
{
"name": "nest-cookies",
"version": "1.2.1",
"description": "A module to work with setting and reading cookies in NestJS",
"keywords": [
"NestJS",
"Nest",
"Express",
"Fastify",
"Cookies"
],
"author": "Jay McDoniel <me@jaymcdoniel.dev>",
"private": false,
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"prebuild:deploy": "rimraf dist",
"build:deploy": "nest build -p tsconfig.deploy.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test:e2e": "jest --config ./test/jest-e2e.json",
"preversion": "pnpm build:deploy",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@nestjs/cli": "^7.0.0",
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/graphql": "^7.6.0",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/platform-fastify": "^7.4.2",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@types/express": "^4.17.3",
"@types/jest": "26.0.20",
"@types/node": "^14.14.9",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"apollo-server-express": "^2.17.0",
"apollo-server-fastify": "^2.17.0",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.21.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.20.1",
"fastify": "^3.3.0",
"graphql": "^15.3.0",
"graphql-tools": "^7.0.1",
"husky": "^5.0.9",
"jest": "26.6.3",
"lint-staged": "^10.3.0",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"supertest": "^6.0.1",
"ts-jest": "26.5.4",
"ts-loader": "^8.0.10",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ext ts"
],
"*.{js,json,html,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}