-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "nestjs-knex",
"version": "2.0.0",
"description": "Nest - modern, fast, powerful node.js web framework (@knex)",
"author": "Sviatoslav H",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/svtslv/nestjs-knex"
},
"keywords": [
"nest",
"nestjs",
"knex",
"orm",
"database"
],
"files": [
"dist",
"index.js",
"index.d.ts"
],
"main": "dist/index.js",
"scripts": {
"fix": "rm -rf node_modules && rm package-lock.json && npm install",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest --config ./test/jest.config.json --runInBand",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build",
"release": "release-it"
},
"peerDependencies": {
"@nestjs/common": ">=6.7.0",
"@nestjs/core": ">=6.7.0",
"knex": ">=0.95.4"
},
"devDependencies": {
"@nestjs/common": "^9.2.0",
"@nestjs/core": "^9.0.5",
"@nestjs/testing": "^7.6.15",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.3.1",
"knex": "^2.4.0",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
}
}