-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "@ts-gql/repo",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/Thinkmill/ts-gql",
"license": "MIT",
"packageManager": "pnpm@7.14.2",
"engines": {
"pnpm": "7.14.2"
},
"dependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@manypkg/cli": "0.19.2",
"@preconstruct/cli": "^2.8.3",
"@ts-gql/eslint-plugin": "*",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-jest": "^29.1.2",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.25.0",
"graphql": "^16.3.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"typescript": "^5.1.6"
},
"manypkg": {
"defaultBranch": "main"
},
"scripts": {
"postinstall": "preconstruct dev && manypkg check && cd test-app && pnpm run build",
"start": "cd test-app && pnpx next",
"release": "preconstruct build && changeset publish",
"version": "changeset version && pnpm i --frozen-lockfile=false && pnpm run format",
"test": "jest",
"types": "tsc",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"preconstruct": {
"packages": [
"packages/*"
],
"distFilenameStrategy": "unscoped-package-name",
"exports": true
}
}