expo-backend-types 0.0.41 → 0.0.42

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +114 -113
package/package.json CHANGED
@@ -1,114 +1,115 @@
1
- {
2
- "name": "expo-backend-types",
3
- "version": "0.0.41",
4
- "description": "",
5
- "author": "Expo",
6
- "private": false,
7
- "license": "UNLICENSED",
8
- "files": [
9
- "types",
10
- "src/**/*.dto.ts"
11
- ],
12
- "scripts": {
13
- "ci": "npm run build && npm run generate-ts-schema && npm run format && npm run lint && npm run check-exports",
14
- "build": "nest build",
15
- "format": "prettier --write \"src/**/*.ts\"",
16
- "check-format": "prettier --check \"src/**/*.ts\"",
17
- "check-exports": "attw --pack .",
18
- "local-release": "changeset version && changeset publish",
19
- "commit-schema": "git add ./types/schema.d.ts swagger.yaml && git commit -m \"Update schema\"",
20
- "start": "nest start",
21
- "dev": "nest start --watch",
22
- "start:debug": "nest start --debug --watch",
23
- "start:prod": "node dist/main",
24
- "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
25
- "test": "jest",
26
- "test:watch": "jest --watch",
27
- "test:cov": "jest --coverage",
28
- "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
29
- "test:e2e": "jest --config ./test/jest-e2e.json",
30
- "generate-ts-schema": "node ./dist/src/main.swagger.js && openapi-typescript ./swagger.yaml -o ./types/schema.d.ts",
31
- "prepare": "husky",
32
- "prepublishOnly": "npm run ci"
33
- },
34
- "dependencies": {
35
- "@anatine/zod-nestjs": "^2.0.9",
36
- "@anatine/zod-openapi": "^2.2.6",
37
- "@nestjs/common": "^10.0.0",
38
- "@nestjs/config": "^3.2.3",
39
- "@nestjs/core": "^10.0.0",
40
- "@nestjs/jwt": "^10.2.0",
41
- "@nestjs/platform-express": "^10.0.0",
42
- "@nestjs/swagger": "^7.3.1",
43
- "@prisma/client": "^5.14.0",
44
- "bcrypt": "^5.1.1",
45
- "json-to-pretty-yaml": "^1.2.2",
46
- "openapi3-ts": "^4.4.0",
47
- "reflect-metadata": "^0.2.0",
48
- "rxjs": "^7.8.1",
49
- "zod": "^3.23.8"
50
- },
51
- "devDependencies": {
52
- "@arethetypeswrong/cli": "^0.15.4",
53
- "@changesets/cli": "^2.27.7",
54
- "@nestjs/cli": "^10.0.0",
55
- "@nestjs/schematics": "^10.0.0",
56
- "@nestjs/testing": "^10.0.0",
57
- "@openapitools/openapi-generator-cli": "^2.13.4",
58
- "@types/bcrypt": "^5.0.2",
59
- "@types/express": "^4.17.17",
60
- "@types/jest": "^29.5.2",
61
- "@types/json-to-pretty-yaml": "^1.2.1",
62
- "@types/node": "^20.3.1",
63
- "@types/supertest": "^6.0.0",
64
- "@typescript-eslint/eslint-plugin": "^6.0.0",
65
- "@typescript-eslint/parser": "^6.0.0",
66
- "eslint": "^8.42.0",
67
- "eslint-config-prettier": "^9.0.0",
68
- "eslint-plugin-prettier": "^5.0.0",
69
- "eslint-plugin-unused-imports": "^3.2.0",
70
- "husky": "^9.0.11",
71
- "jest": "^29.5.0",
72
- "lint-staged": "^15.2.5",
73
- "openapi-typescript": "^7.0.0-rc.0",
74
- "prettier": "^3.0.0",
75
- "prisma": "^5.14.0",
76
- "source-map-support": "^0.5.21",
77
- "supertest": "^6.3.3",
78
- "ts-jest": "^29.1.0",
79
- "ts-loader": "^9.4.3",
80
- "ts-node": "^10.9.1",
81
- "tsconfig-paths": "^4.2.0",
82
- "typescript": "^5.4.5"
83
- },
84
- "main": "types/index.d.ts",
85
- "exports": {
86
- ".": {
87
- "import": "./types/index.d.ts",
88
- "require": "./types/index.d.ts",
89
- "default": "./types/index.d.ts",
90
- "types": "./types/index.d.ts"
91
- }
92
- },
93
- "lint-staged": {
94
- "**/*.{js,ts,jsx,tsx}": [
95
- "prettier --write",
96
- "eslint --fix",
97
- "git add"
98
- ],
99
- "swagger.yaml": [
100
- "git add"
101
- ],
102
- "types/schema.d.ts": [
103
- "git add"
104
- ],
105
- "*.json": [
106
- "prettier --write",
107
- "git add"
108
- ],
109
- "packages/prisma/schema.prisma": [
110
- "prisma format",
111
- "git add"
112
- ]
113
- }
1
+ {
2
+ "name": "expo-backend-types",
3
+ "version": "0.0.42",
4
+ "description": "",
5
+ "author": "Expo",
6
+ "private": false,
7
+ "license": "UNLICENSED",
8
+ "files": [
9
+ "types",
10
+ "src/**/*.dto.ts",
11
+ "src/**/export.ts"
12
+ ],
13
+ "scripts": {
14
+ "ci": "npm run build && npm run generate-ts-schema && npm run format && npm run lint && npm run check-exports",
15
+ "build": "nest build",
16
+ "format": "prettier --write \"src/**/*.ts\"",
17
+ "check-format": "prettier --check \"src/**/*.ts\"",
18
+ "check-exports": "attw --pack .",
19
+ "local-release": "changeset version && changeset publish",
20
+ "commit-schema": "git add ./types/schema.d.ts swagger.yaml && git commit -m \"Update schema\"",
21
+ "start": "nest start",
22
+ "dev": "nest start --watch",
23
+ "start:debug": "nest start --debug --watch",
24
+ "start:prod": "node dist/main",
25
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
26
+ "test": "jest",
27
+ "test:watch": "jest --watch",
28
+ "test:cov": "jest --coverage",
29
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
30
+ "test:e2e": "jest --config ./test/jest-e2e.json",
31
+ "generate-ts-schema": "node ./dist/src/main.swagger.js && openapi-typescript ./swagger.yaml -o ./types/schema.d.ts",
32
+ "prepare": "husky",
33
+ "prepublishOnly": "npm run ci"
34
+ },
35
+ "dependencies": {
36
+ "@anatine/zod-nestjs": "^2.0.9",
37
+ "@anatine/zod-openapi": "^2.2.6",
38
+ "@nestjs/common": "^10.0.0",
39
+ "@nestjs/config": "^3.2.3",
40
+ "@nestjs/core": "^10.0.0",
41
+ "@nestjs/jwt": "^10.2.0",
42
+ "@nestjs/platform-express": "^10.0.0",
43
+ "@nestjs/swagger": "^7.3.1",
44
+ "@prisma/client": "^5.14.0",
45
+ "bcrypt": "^5.1.1",
46
+ "json-to-pretty-yaml": "^1.2.2",
47
+ "openapi3-ts": "^4.4.0",
48
+ "reflect-metadata": "^0.2.0",
49
+ "rxjs": "^7.8.1",
50
+ "zod": "^3.23.8"
51
+ },
52
+ "devDependencies": {
53
+ "@arethetypeswrong/cli": "^0.15.4",
54
+ "@changesets/cli": "^2.27.7",
55
+ "@nestjs/cli": "^10.0.0",
56
+ "@nestjs/schematics": "^10.0.0",
57
+ "@nestjs/testing": "^10.0.0",
58
+ "@openapitools/openapi-generator-cli": "^2.13.4",
59
+ "@types/bcrypt": "^5.0.2",
60
+ "@types/express": "^4.17.17",
61
+ "@types/jest": "^29.5.2",
62
+ "@types/json-to-pretty-yaml": "^1.2.1",
63
+ "@types/node": "^20.3.1",
64
+ "@types/supertest": "^6.0.0",
65
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
66
+ "@typescript-eslint/parser": "^6.0.0",
67
+ "eslint": "^8.42.0",
68
+ "eslint-config-prettier": "^9.0.0",
69
+ "eslint-plugin-prettier": "^5.0.0",
70
+ "eslint-plugin-unused-imports": "^3.2.0",
71
+ "husky": "^9.0.11",
72
+ "jest": "^29.5.0",
73
+ "lint-staged": "^15.2.5",
74
+ "openapi-typescript": "^7.0.0-rc.0",
75
+ "prettier": "^3.0.0",
76
+ "prisma": "^5.14.0",
77
+ "source-map-support": "^0.5.21",
78
+ "supertest": "^6.3.3",
79
+ "ts-jest": "^29.1.0",
80
+ "ts-loader": "^9.4.3",
81
+ "ts-node": "^10.9.1",
82
+ "tsconfig-paths": "^4.2.0",
83
+ "typescript": "^5.4.5"
84
+ },
85
+ "main": "types/index.d.ts",
86
+ "exports": {
87
+ ".": {
88
+ "import": "./types/index.d.ts",
89
+ "require": "./types/index.d.ts",
90
+ "default": "./types/index.d.ts",
91
+ "types": "./types/index.d.ts"
92
+ }
93
+ },
94
+ "lint-staged": {
95
+ "**/*.{js,ts,jsx,tsx}": [
96
+ "prettier --write",
97
+ "eslint --fix",
98
+ "git add"
99
+ ],
100
+ "swagger.yaml": [
101
+ "git add"
102
+ ],
103
+ "types/schema.d.ts": [
104
+ "git add"
105
+ ],
106
+ "*.json": [
107
+ "prettier --write",
108
+ "git add"
109
+ ],
110
+ "packages/prisma/schema.prisma": [
111
+ "prisma format",
112
+ "git add"
113
+ ]
114
+ }
114
115
  }