forked from nestjs/terminus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
{
"name": "@nestjs/terminus",
"version": "5.5.2",
"description": "Nest - modern, fast, powerful node.js web framework (@terminus)",
"author": "Kamil Mysliwiec",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"prepublish": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "npm run test:e2e && npm run test:ut",
"test:ut": "jest --config=jest.json",
"test:ut:cov": "npm run test:ut -- --coverage",
"test:e2e": "jest --config=e2e/jest-e2e.json --detectOpenHandles --forceExit",
"doc": "./node_modules/.bin/compodoc -p tsconfig.json",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.7",
"@godaddy/terminus": "^4.1.0",
"@nestjs/common": "^5.5.0",
"@nestjs/core": "^5.5.0",
"@nestjs/testing": "^5.5.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"@types/mongoose": "^5.3.7",
"fastify": "^1.13.3",
"fastify-formbody": "^2.0.3",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"mysql": "^2.16.0",
"opn": "^5.4.0",
"portfinder": "^1.0.20",
"prettier": "^1.15.3",
"reflect-metadata": "0.1.12",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"repository": {
"url": "https://github.com/BrunnerLivio/nest-terminus"
},
"peerDependencies": {
"@nestjs/common": "^5.5.0",
"@nestjs/core": "^5.5.0",
"@nestjs/typeorm": "^5.2.2",
"@nestjs/mongoose": "^5.2.2",
"typeorm": "^0.2.9",
"mongoose": "^5.4.2",
"@godaddy/terminus": "^4.1.0",
"reflect-metadata": "0.1.12",
"rxjs": "^6.3.3"
},
"optionalDependencies": {
"typeorm": "^0.2.9",
"@nestjs/typeorm": "^5.2.2",
"mongoose": "^5.4.2",
"@nestjs/mongoose": "^5.2.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}