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.
- package/package.json +114 -113
package/package.json
CHANGED
@@ -1,114 +1,115 @@
|
|
1
|
-
{
|
2
|
-
"name": "expo-backend-types",
|
3
|
-
"version": "0.0.
|
4
|
-
"description": "",
|
5
|
-
"author": "Expo",
|
6
|
-
"private": false,
|
7
|
-
"license": "UNLICENSED",
|
8
|
-
"files": [
|
9
|
-
"types",
|
10
|
-
"src/**/*.dto.ts"
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
"
|
15
|
-
"
|
16
|
-
"
|
17
|
-
"check-
|
18
|
-
"
|
19
|
-
"
|
20
|
-
"
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"start:
|
24
|
-
"
|
25
|
-
"
|
26
|
-
"test
|
27
|
-
"test:
|
28
|
-
"test:
|
29
|
-
"test:
|
30
|
-
"
|
31
|
-
"
|
32
|
-
"
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
"@anatine/zod-
|
37
|
-
"@
|
38
|
-
"@nestjs/
|
39
|
-
"@nestjs/
|
40
|
-
"@nestjs/
|
41
|
-
"@nestjs/
|
42
|
-
"@nestjs/
|
43
|
-
"@
|
44
|
-
"
|
45
|
-
"
|
46
|
-
"
|
47
|
-
"
|
48
|
-
"
|
49
|
-
"
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
"@
|
54
|
-
"@
|
55
|
-
"@nestjs/
|
56
|
-
"@nestjs/
|
57
|
-
"@
|
58
|
-
"@
|
59
|
-
"@types/
|
60
|
-
"@types/
|
61
|
-
"@types/
|
62
|
-
"@types/
|
63
|
-
"@types/
|
64
|
-
"@
|
65
|
-
"@typescript-eslint/
|
66
|
-
"eslint": "^
|
67
|
-
"eslint
|
68
|
-
"eslint-
|
69
|
-
"eslint-plugin-
|
70
|
-
"
|
71
|
-
"
|
72
|
-
"
|
73
|
-
"
|
74
|
-
"
|
75
|
-
"
|
76
|
-
"
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"ts-
|
80
|
-
"ts-
|
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
|
-
|
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
|
}
|