forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.03 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
{
"name": "@keystone-6/mono-repo",
"description": "KeystoneJS monorepo for all the @keystone-6 packages",
"private": true,
"version": "0.0.0",
"author": "Thinkmill Labs Pty Ltd",
"license": "MIT",
"repository": "https://github.com/keystonejs/keystone",
"homepage": "https://github.com/keystonejs/keystone",
"packageManager": "[email protected]",
"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 --runInBand",
"test:admin-ui": "jest tests/admin-ui-tests",
"build": "preconstruct build",
"prepare": "preconstruct dev"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.0",
"@babel/preset-react": "^7.18.0",
"@babel/preset-typescript": "^7.21.0",
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.18.0",
"@changesets/get-github-info": "^0.5.2",
"@changesets/get-release-plan": "^3.0.16",
"@manypkg/cli": "^0.21.0",
"@preconstruct/cli": "2.8.1",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.5.12",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"esbuild": "^0.19.0",
"esbuild-jest": "^0.5.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"typescript": "~5.2.2"
},
"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"
}
]
}
}
}