forked from Thinkmill/keystatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.59 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "keystatic-repo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"packageManager": "pnpm@8.15.4",
"engines": {
"pnpm": "8.15.4"
},
"scripts": {
"build:docs": "pnpm --filter=keystatic-docs build",
"build:designsystem": "pnpm --filter=@keystar/docs build",
"build:packages": "cd packages/keystatic && pnpm run setup && cd ../.. && preconstruct build",
"check:format": "prettier --check",
"check:lint": "eslint",
"check:packages": "preconstruct validate",
"check:types": "tsc",
"clean": "git clean -fXd",
"dev:create": "pnpm --filter=create dev",
"dev:localization": "pnpm --filter=localization dev",
"dev:docs": "pnpm --filter=keystatic-docs dev",
"dev:designsystem": "pnpm --filter=@keystar/docs dev",
"dev:playroom": "pnpm --filter=@keystar/docs dev:playroom",
"dev:storybook": "pnpm --filter=@keystar/docs dev:storybook",
"docs:build": "pnpm run build:designsystem",
"eslint": "eslint .",
"format": "prettier --write",
"fresh": "npm run clean && pnpm install",
"postinstall": "preconstruct dev && manypkg check && cd packages/keystatic && pnpm run setup",
"lint": "eslint --fix",
"prettier": "prettier **/*.{ts,tsx}",
"release": "pnpm build:packages && changeset publish",
"start:docs": "pnpm --filter=keystatic-docs start",
"start:designsystem": "pnpm --filter=@keystar/docs start",
"static": "pnpm run validate && pnpm run test",
"test": "pnpm run test:unit",
"test-strict": "cross-env STRICT_MODE=1 pnpm run test",
"test:coverage": "jest ---coverage",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest",
"validate": "npm-run-all --parallel check:*",
"version-packages": "changeset version && pnpm i --frozen-lockfile=false && pnpm run format \"**/CHANGELOG.md\""
},
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-explicit-resource-management": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@manypkg/cli": "^0.21.3",
"@preconstruct/cli": "^2.8.3",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/eslint": "^8.4.3",
"@types/node": "16.11.13",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-c8b3f72-20240517",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^30.0.0-alpha.2",
"jest-environment-jsdom": "^30.0.0-alpha.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.2.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.5"
},
"manypkg": {
"ignoredRules": [
"INVALID_DEV_AND_PEER_DEPENDENCY_RELATIONSHIP"
],
"workspaceProtocol": "require"
},
"preconstruct": {
"packages": [
"design-system/pkg",
"packages/*"
],
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true,
"typeModule": true,
"distInRoot": true
}
}
}