-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "graphql-request-profiler-monorepo",
"version": "0.2.4",
"private": true,
"description": "Easy to use GraphQL performance analysis utility for tracing resolver execution time",
"repository": {
"type": "git",
"url": "https://github.com/Econify/graphql-request-profiler.git"
},
"keywords": [
"graphql",
"profiler",
"performance",
"resolvers",
"apollo",
"express"
],
"author": "Regan Karlewicz <[email protected]>",
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"lint": "turbo run lint",
"test": "turbo run test",
"prettier": "npx prettier --write .",
"prune": "turbo prune --scope=\"@econify/graphql-request-profiler\" && cp README.md out/packages/plugin/README.md",
"publish": "cd out/packages/plugin && npm publish --access public",
"publish:dry": "cd out/packages/plugin && npm publish --access public --dry-run",
"clean": "rm -rf out && find . -name \"node_modules\" -type d -exec rm -rf {} + && find . -name \"dist\" -type d -exec rm -rf {} +",
"package": "yarn run build && yarn run prune"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.4.0",
"prettier": "^3.0.0",
"turbo": "^1.10.7",
"typescript": "^5.1.6"
}
}