forked from toonvanstrijp/nestjs-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.59 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
106
107
108
109
110
111
112
113
114
115
{
"name": "nestjs-i18n",
"version": "9.1.1",
"homepage": "https://nestjs-i18n.com",
"description": "The i18n module for Nest.",
"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",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"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",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"docusaurus": "docusaurus",
"doc:start": "docusaurus start",
"doc:build": "docusaurus build",
"doc:swizzle": "docusaurus swizzle",
"doc:deploy": "docusaurus deploy",
"doc:clear": "docusaurus clear",
"doc:serve": "docusaurus serve",
"doc:write-translations": "docusaurus write-translations",
"doc:write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc"
},
"devDependencies": {
"@apollo/client": "^3.6.1",
"@docusaurus/core": "^2.0.0-beta.18",
"@docusaurus/module-type-aliases": "^2.0.0-beta.18",
"@docusaurus/preset-classic": "^2.0.0-beta.18",
"@grpc/grpc-js": "^1.6.7",
"@grpc/proto-loader": "^0.6.9",
"@mdx-js/react": "^1.6.22",
"@nestjs/apollo": "^10.0.9",
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/graphql": "^10.0.10",
"@nestjs/microservices": "^8.4.4",
"@nestjs/platform-express": "^8.4.4",
"@nestjs/platform-fastify": "^8.4.4",
"@nestjs/testing": "^8.4.4",
"@tsconfig/docusaurus": "^1.0.5",
"@types/accept-language-parser": "^1.5.3",
"@types/cookie": "^0.4.1",
"@types/hbs": "^4.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"@types/string-format": "^2.0.0",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-ws": "^1.0.20",
"apollo-server-core": "^3.6.7",
"apollo-server-express": "^3.6.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"clsx": "^1.1.1",
"ejs": "^3.1.7",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"hbs": "^4.2.0",
"jest": "^27.3.1",
"prism-react-renderer": "^1.3.1",
"pug": "^3.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"subscriptions-transport-ws": "^0.9.0",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4"
},
"dependencies": {
"accept-language-parser": "^1.5.0",
"chokidar": "^3.5.3",
"cookie": "^0.4.1",
"iterare": "^1.2.1",
"js-yaml": "^4.1.0",
"string-format": "^2.0.0"
},
"peerDependencies": {
"@nestjs/common": "*",
"@nestjs/core": "*",
"class-validator": "~0.13",
"rxjs": "*"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}