-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
79 lines (79 loc) · 2.62 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
75
76
77
78
79
{
"name": "envelop-mono-repository",
"author": "Dotan Simha <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.1.0"
},
"scripts": {
"build": "bob build",
"ci:lint": "eslint --config .eslintrc.json --ext .ts . --max-warnings 0 --output-file eslint_report.json --format json",
"lint": "eslint --config .eslintrc.json --ext .ts . --max-warnings 0",
"lint:prettier": "prettier --cache --ignore-path .prettierignore --check .",
"loadtest:run": "pnpm run --filter @envelop/benchmark loadtest:run",
"loadtest:start-server": "pnpm run --filter @envelop/benchmark loadtest:start-server",
"postinstall": "npx -y update-browserslist-db@latest --update-db",
"prebuild": "rimraf packages/*/dist packages/plugins/*/dist",
"prepare": "husky install",
"prettier": "prettier --cache --ignore-path .prettierignore --write --list-different .",
"release": "pnpm build && changeset publish",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "jest --coverage",
"test:core": "jest ./packages/core --coverage",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.24.1",
"@babel/preset-env": "7.24.3",
"@babel/preset-typescript": "7.25.7",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@theguild/prettier-config": "2.0.7",
"@types/benchmark": "2.1.5",
"@types/jest": "29.5.12",
"@types/k6": "0.49.3",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"bob-the-bundler": "7.0.1",
"chalk": "5.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-package-json": "^0.10.0",
"eslint-plugin-promise": "7.0.0",
"eslint-plugin-unicorn": "55.0.0",
"globby": "14.0.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"rimraf": "6.0.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.1.3",
"wait-on": "8.0.0"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,json,md,mdx}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"esbuild": "^0.17.0",
"graphql": "16.6.0",
"estree-util-build-jsx": "2.2.2"
}
}
}