forked from toonvanstrijp/nestjs-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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": "@greguintow/nestjs-i18n",
"version": "9.0.0",
"description": "",
"author": "Toon van Strijp",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ToonvanStrijp/nestjs-i18n"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run build:lib",
"build:lib": "rm -rf dist && tsc -p tsconfig.build.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "jest --config ./tests/jest-test.json",
"test:cov": "jest --config ./tests/jest-test.json --coverage",
"coveralls": "npm run test:cov && cat ./coverage/lcov.info | coveralls",
"prerelease": "npm run build",
"release": "release-it"
},
"devDependencies": {
"@nestjs/common": "^8.0.4",
"@nestjs/core": "^8.0.4",
"@nestjs/graphql": "^8.0.2",
"@nestjs/platform-express": "^8.0.4",
"@nestjs/platform-fastify": "^8.0.4",
"@nestjs/testing": "^8.0.4",
"@types/accept-language-parser": "^1.5.2",
"@types/cookie": "^0.4.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@types/string-format": "^2.0.0",
"@types/supertest": "^2.0.11",
"apollo-cache": "^1.3.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-ws": "^1.0.20",
"apollo-server-express": "^2.0.0",
"coveralls": "^3.1.1",
"fastify": "^3.15.1",
"graphql": "^15.5.1",
"graphql-subscriptions": "^1.2.1",
"graphql-tools": "^7.0.5",
"jest": "^27.0.6",
"prettier": "2.3.2",
"reflect-metadata": "^0.1.13",
"release-it": "^14.11.6",
"subscriptions-transport-ws": "^0.9.18",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"typescript": "4.3.5",
"ws": "^7.5.3"
},
"dependencies": {
"accept-language-parser": "^1.5.0",
"chokidar": "^3.5.1",
"cookie": "^0.4.1",
"rxjs": "^7.1.0",
"string-format": "^2.0.0"
},
"peerDependencies": {
"@nestjs/common": "*",
"@nestjs/core": "*"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}