forked from Urigo/graphql-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "graphql-modules-platform",
"private": true,
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"postinstall": "patch-package",
"build": "tsc --project tsconfig.json && bob build",
"test": "jest",
"prerelease": "yarn build",
"release": "changeset publish",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag alpha) || echo Skipping Canary...",
"format": "prettier --write \"packages/**/*.{js,json,css,md,ts,tsx}\"",
"pr": "changeset",
"lint": "eslint \"packages/**\"",
"benchmark:basic": "NODE_ENV=production ts-node --project tsconfig.app.json benchmark/basic.case.ts",
"deploy-website": "cd website && yarn && yarn build && mkdir graphql-modules && mv build/* graphql-modules && mv graphql-modules build"
},
"devDependencies": {
"@changesets/cli": "2.12.0",
"@types/benchmark": "2.1.0",
"@types/express": "4.17.10",
"@types/jest": "26.0.20",
"@types/node": "14.14.20",
"@types/ramda": "0.27.34",
"@typescript-eslint/eslint-plugin": "4.13.0",
"@typescript-eslint/parser": "4.13.0",
"apollo-server": "2.19.1",
"apollo-server-express": "2.19.1",
"artillery": "1.6.1",
"benchmark": "2.1.4",
"bob-the-bundler": "1.1.0",
"dataloader": "2.0.0",
"eslint": "7.17.0",
"express": "4.17.1",
"express-graphql": "0.11.0",
"graphql": "15.4.0",
"graphql-subscriptions": "1.1.0",
"husky": "4.3.7",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"patch-package": "6.2.2",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"subscriptions-transport-ws": "0.9.18",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint",
"*{js,json,css,md,ts,tsx}": "prettier --write"
}
}