-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.25 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
{
"name": "@appvise/graphql",
"version": "1.1.4",
"description": "Tools for building GraphQL APIs with NestJS + @appvise/domain package",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"postversion": "git push --follow-tags",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/app-vise/graphql.git"
},
"keywords": [
"GraphQL"
],
"author": "App-vise",
"license": "MIT",
"bugs": {
"url": "https://github.com/app-vise/graphql/issues"
},
"homepage": "https://github.com/app-vise/graphql#readme",
"dependencies": {
"@appvise/domain": "^1.1.0",
"@nestjs/common": "^9.1.1",
"@nestjs/cqrs": "^9.0.1",
"@nestjs/graphql": "^10.1.2",
"@types/graphql-upload": "^8.0.11",
"@types/node": "^18.16.3",
"@types/validator": "^13.7.2",
"@types/ws": "^8.5.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"graphql": "^16.5.0",
"graphql-scalars": "^1.20.4",
"graphql-upload": "^15.0.1",
"ts-morph": "^14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3"
}
}