This repository has been archived by the owner on Feb 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.67 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
{
"name": "@nestjs-addons/in-memory-db",
"version": "0.0.0-development",
"description": "Simple In-Memory DB Service for NestJS projects",
"author": "Wes Grimes",
"license": "MIT",
"repository": "https://github.com/nestjs-addons/in-memory-db",
"schematics": "./dist/schematics/collection.json",
"scripts": {
"build": "npm run build:lib && npm run build:schematics",
"build:dev": "tsc-watch -p tsconfig.json",
"build:lib": "tsc -p tsconfig.json",
"build:schematics": "tsc -p tsconfig.schematics.json && npm run copy:files",
"copy:files": "copyfiles schematics/collection.json schematics/nest-add/schema.json dist",
"watch:schematics": "npm link && npm run build:schematics -- --watch",
"format": "prettier lib/**/*.ts --write",
"format:verify": "prettier lib/**/*.ts --check",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest --config jest.config.js",
"e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"semantic-release": "semantic-release"
},
"dependencies": {
"@angular-devkit/core": "10.1.1",
"copyfiles": "2.1.1",
"schematics-utilities": "2.0.1",
"uuid": "8.3.0"
},
"devDependencies": {
"@nestjs/common": "7.4.4",
"@nestjs/core": "7.4.4",
"@nestjs/platform-express": "7.4.4",
"@nestjs/testing": "7.4.4",
"@semantic-release/changelog": "5.0.1",
"@types/jest": "26.0.13",
"@types/node": "7.10.12",
"@types/supertest": "2.0.10",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"jest": "26.4.2",
"prettier": "2.1.1",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.3",
"rxjs-marbles": "6.0.1",
"semantic-release": "17.2.3",
"supertest": "4.0.2",
"ts-jest": "26.3.0",
"eslint": "7.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"typescript": "4.0.2",
"tsc-watch": "4.2.9"
},
"peerDependencies": {
"@nestjs/common": "^6.7.0 || ^7.0.0",
"@nestjs/core": "^6.7.0 || ^7.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add -f"
],
"*.ts,!*.spec.ts": [
"npm run lint"
]
},
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"keywords": [
"nestjs",
"nest",
"api",
"in-memory db",
"in-memory",
"prototyping",
"db",
"crud",
"rest",
"typescript",
"javascript"
]
}