This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "lunar-express",
"version": "0.0.3",
"description": "An express middleware to help provide deterministic responses to graphql queries and mutations.",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.js",
"lint": "run-p --aggregate-output --continue-on-error --max-parallel 2 --print-name \"lint:*\"",
"lint:js": "eslint . --ext .js,.ts,.tsx",
"lint:prettier": "prettier --check .",
"prepublishOnly": "yarn build",
"start": "tsup --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ezcater/lunar-express"
},
"keywords": [
"apollo",
"mocking",
"graphql",
"express"
],
"author": "Craig Cavalier",
"license": "MIT",
"bugs": {
"url": "https://github.com/ezcater/lunar-express/issues"
},
"homepage": "https://github.com/ezcater/lunar-express#readme",
"dependencies": {},
"devDependencies": {
"@ezcater/prettier-config": "^1.0.1",
"body-parser": "^1.20.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"express": "^4",
"lunar-core": "^1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"tsup": "^6.6.3"
},
"peerDependencies": {
"body-parser": "^1.20.2",
"express": "^4",
"lunar-core": "^1"
},
"tsup": {
"entry": [
"src/index.js"
],
"splitting": true,
"sourcemap": "inline",
"clean": true,
"dts": false,
"format": [
"esm",
"cjs"
],
"legacyOutput": true,
"treeshake": true
}
}