-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.62 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.62 KB
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
{
"name": "@schamane/small-graphql-mongoose-middleware",
"version": "1.1.0",
"main": "build/index.js",
"module": "build/index.js",
"source": "src/index.ts",
"types": "build/index.d.ts",
"files": [
"build"
],
"dependencies": {
"lodash": "^4.17.21",
"source-map-support": "^0.5.21"
},
"scripts": {
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --fix --ext .ts src/",
"clean:build": "rimraf build",
"clean:build:cache": "rimraf build .buildcache",
"clean": "npm run -s clean:build && npm run -s clean:build:cache",
"prepublishOnly": "npm run build",
"set-tag": "npm dist-tag add @schamane/small-graphql-mongoose-middleware@1.1.0 v1",
"build:check": "tsc --noemit",
"watch": "npm run build && tsc -w",
"build": "npm run clean && tsc",
"build-micro": "microbundle-crl --no-compress --target node --external util,events,http --format modern,cjs",
"watch-micro": "microbundle-crl watch --no-compress --target node --external util,events,http --format modern,cjs"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.4",
"@types/passport": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"apollo-datasource": "^3.3.2",
"apollo-server-core": "v2",
"apollo-server-express": "v2",
"eslint": "8.19.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.1",
"graphql": "15.x.x",
"microbundle-crl": "^0.13.11",
"mongoose": "^6.4.4",
"passport": "^0.6.0",
"prettier-eslint": "^15.0.1",
"rimraf": "^3.0.2",
"typescript": "4.7.4"
},
"peerDependacies": {
"apollo-datasource": "^3.3.2",
"apollo-server-core": "v2",
"apollo-server-express": "v2",
"mongoose": "^6.4.4",
"passport": "^0.6.0"
},
"peerDevDependacies": {
"@types/express": "^4.17.13",
"@types/passport": "^1.0.9"
},
"resolutions": {
"apollo-datasource": "^3.3.2",
"apollo-server-core": "v2",
"apollo-server-express": "v2",
"mongoose": "^6.4.4",
"passport": "^0.6.0"
},
"repository": "schamane/small-graphql-mongoose-middleware",
"keywords": [
"helpers",
"nodejs",
"grapqhl",
"mongoose",
"apollo-grapqhl",
"application"
],
"author": "Nazar Kulyk <schamane@myeburg.net> (https://myeburg.net)",
"license": "MIT",
"engines": {
"node": ">=16.0.0 || >=18.0.0",
"npm": ">=8.0.0"
}
}