-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
76 lines (76 loc) · 2.17 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
{
"name": "@keystone-6/mono-repo",
"description": "KeystoneJS monorepo for all the @keystone-6 packages",
"author": "Thinkmill Labs Pty Ltd",
"private": true,
"version": null,
"license": "MIT",
"repository": "https://github.com/keystonejs/keystone",
"homepage": "https://github.com/keystonejs/keystone",
"packageManager": "pnpm@9.12.3",
"scripts": {
"coverage": "jest --coverage",
"test": "jest",
"test:filters": "cd prisma-utils && pnpm verify",
"test:types": "tsc",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest",
"test:admin-ui": "jest tests/admin-ui-tests",
"lint": "eslint",
"lint:fix": "eslint --fix",
"build": "preconstruct build",
"prepare": "preconstruct dev"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.18.0",
"@changesets/get-github-info": "^0.6.0",
"@changesets/get-release-plan": "^4.0.0",
"@eslint/js": "^9.2.0",
"@preconstruct/cli": "^2.8.9",
"@stylistic/eslint-plugin-ts": "^2.9.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.24.0",
"esbuild-jest": "^0.5.0",
"eslint": "^9.2.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0"
},
"preconstruct": {
"packages": [
"packages/*",
"design-system/packages/*"
],
"exports": true,
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"keepDynamicImportAsDynamicImportInCommonJS": true
}
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"packages/**/*.{js,ts,tsx}",
"!**/*.d.ts",
"!packages/**/dist/**",
"!packages/core/src/fields/**/test-fixtures.{js,ts}"
],
"transform": {
"^.+\\.[tj]sx?$": [
"esbuild-jest",
{
"target": "esnext"
}
]
}
}
}