forked from nestjsx/crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.37 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
96
97
98
99
100
101
102
103
104
105
{
"name": "@nestjsx/crud",
"version": "4.0.0",
"description": "Nest CRUD for RESTful APIs",
"license": "MIT",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap",
"s": "npx nps",
"s:list": "yarn s --scripts",
"rebuild": "yarn clean && yarn build",
"build": "yarn s build",
"clean": "yarn s clean",
"pretest": "npm run db:prepare:typeorm",
"test": "yarn s test",
"pretest:coveralls": "yarn pretest",
"test:coveralls": "yarn s test.coveralls",
"start:typeorm": "npx nodemon -w ./integration/crud-typeorm -e ts node_modules/.bin/ts-node integration/crud-typeorm/main.ts",
"db:sync:typeorm": "cd ./integration/crud-typeorm && npx ts-node -r tsconfig-paths/register ../../node_modules/typeorm/cli.js schema:sync -f=orm",
"db:drop:typeorm": "cd ./integration/crud-typeorm && npx ts-node -r tsconfig-paths/register ../../node_modules/typeorm/cli.js schema:drop -f=orm",
"db:seeds:typeorm": "cd ./integration/crud-typeorm && npx ts-node -r tsconfig-paths/register ../../node_modules/typeorm/cli.js migration:run -f=orm",
"db:prepare:typeorm": "npm run db:drop:typeorm && npm run db:sync:typeorm && npm run db:seeds:typeorm",
"format": "npx pretty-quick --pattern \"packages/**/!(*.d).ts\"",
"lint": "npx tslint 'packages/**/*.ts'",
"commit": "npx git-cz",
"postinstall": "npx opencollective"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"yarn commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn format --staged",
"commit-msg": "npx validate-commit-msg"
}
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nestjsx",
"donation": {
"text": "Become a partner:"
}
},
"peerDependencies": {},
"optionalDependencies": {},
"dependencies": {
"@nestjs/common": "6.6.7",
"@nestjs/core": "6.6.7",
"@nestjs/platform-express": "6.6.7",
"@nestjs/swagger": "3.1.0",
"@nestjs/testing": "6.6.7",
"@nestjs/typeorm": "6.1.3",
"@nuxtjs/opencollective": "0.2.2",
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"@types/qs": "^6.5.3",
"@types/supertest": "2.0.8",
"class-transformer": "0.2.3",
"class-validator": "0.10.0",
"commitizen": "4.0.3",
"coveralls": "3.0.6",
"cz-conventional-changelog": "3.0.2",
"husky": "3.0.5",
"jest": "24.9.0",
"jest-extended": "^0.11.2",
"lerna": "3.16.4",
"nodemon": "1.19.2",
"npm-check": "5.9.0",
"nps": "5.9.8",
"nps-utils": "1.7.0",
"pg": "7.12.1",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"qs": "^6.8.0",
"redis": "2.8.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.0",
"rxjs": "6.5.3",
"supertest": "4.0.2",
"swagger-ui-express": "4.1.0",
"ts-jest": "24.1.0",
"ts-node": "8.3.0",
"tsconfig-extends": "^1.0.1",
"tsconfig-paths": "3.9.0",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"typeorm": "0.2.19",
"typescript": "3.6.3",
"validate-commit-msg": "2.14.0"
},
"devDependencies": {},
"author": {
"name": "Michael Yali",
"email": "mihon4ik@gmail.com"
}
}