-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 6.71 KB
/
package.json
File metadata and controls
152 lines (152 loc) · 6.71 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/adapters/*/*",
"packages/auth-providers/*/*",
"packages/cli-packages/*",
"packages/mailer/core",
"packages/mailer/handlers/*",
"packages/mailer/renderers/*",
"!packages/create-cedar-rsc-app",
"upgrade-scripts"
],
"scripts": {
"build": "cross-env NX_DAEMON=false nx run-many -t build",
"build:clean": "node ./tasks/clean-build.mts",
"build:pack": "nx run-many -t build:pack",
"build:test-project": "node ./tasks/test-project/test-project.mts",
"build:watch": "lerna run build:watch --parallel; tsc --build",
"changesets": "tsx ./tasks/changesets/changesets.mts",
"check": "cross-env yarn constraints && yarn dedupe --check",
"check:package": "nx run-many -t check:package --output-style static",
"clean": "node ./tasks/clean.mjs",
"e2e": "node ./tasks/run-e2e.cjs",
"e2e:background-jobs": "tsx ./tasks/e2e-background-jobs/run.mts",
"format": "prettier . --write",
"format:check": "prettier . --check",
"generate-dependency-graph": "node ./tasks/generateDependencyGraph.mjs",
"install:all": "concurrently -g -c auto -n install:fw \"yarn install\" npm:install:crwrsca",
"install:ci": "concurrently -g -c auto -n install:fw:ci \"yarn install --inline-builds\" npm:install:crwrsca:ci",
"install:crwrsca": "yarn --cwd packages/create-cedar-rsc-app install",
"install:crwrsca:ci": "yarn --cwd packages/create-cedar-rsc-app install --inline-builds",
"lint": "concurrently -c auto npm:lint:fw npm:lint:templates npm:lint:crwrsca",
"lint:crwrsca": "yarn --cwd packages/create-cedar-rsc-app run lint",
"lint:crwrsca:fix": "yarn --cwd packages/create-cedar-rsc-app run lint --fix",
"lint:fix": "concurrently -c auto npm:lint:fw:fix npm:lint:templates:fix npm:lint:crwrsca:fix",
"lint:fw": "eslint --config eslint.config.mjs --ignore-pattern Routes.jsx --ignore-pattern create-cedar-rsc-app --ignore-pattern packages/create-cedar-app/templates packages",
"lint:fw:fix": "eslint --config eslint.config.mjs --ignore-pattern Routes.jsx --ignore-pattern create-cedar-rsc-app --ignore-pattern packages/create-cedar-app/templates packages --fix",
"lint:templates": "concurrently -c auto \"cd packages/create-cedar-app/templates/ts && npx eslint .\" \"cd packages/create-cedar-app/templates/js && npx eslint .\" \"cd packages/create-cedar-app/templates/esm-ts && npx eslint .\" \"cd packages/create-cedar-app/templates/esm-js && npx eslint .\"",
"lint:templates:fix": "concurrently -c auto \"cd packages/create-cedar-app/templates/ts && npx eslint . --fix\" \"cd packages/create-cedar-app/templates/js && npx eslint . --fix\" \"cd packages/create-cedar-app/templates/esm-ts && npx eslint . --fix\" \"cd packages/create-cedar-app/templates/esm-js && npx eslint . --fix\"",
"project:copy": "node ./tasks/framework-tools/frameworkFilesToProject.mjs",
"project:deps": "node ./tasks/framework-tools/frameworkDepsToProject.mjs",
"project:sync": "node ./tasks/framework-tools/frameworkSyncToProject.mjs",
"project:tarsync": "tsx ./tasks/framework-tools/tarsync/bin.mts",
"rebuild-local-testing-project": "node ./tasks/rebuild-local-testing-project.mts",
"rebuild-test-project-fixture": "node ./tasks/test-project/rebuild-test-project-fixture.mts",
"rebuild-test-project-fixture-esm": "node ./tasks/test-project/rebuild-test-project-fixture.mts --esm",
"smoke-tests": "node ./tasks/smoke-tests/smoke-tests.mjs",
"test": "nx run-many -t test -- --minWorkers=1 --maxWorkers=4",
"test:k6": "tsx ./tasks/k6-test/run-k6-tests.mts",
"test:types": "nx run-many -t test:types",
"test-ci": "nx run-many -t test"
},
"resolutions": {
"@actions/glob/minimatch": "npm:3.1.5",
"@eslint/eslintrc/minimatch": "npm:3.1.5",
"@humanwhocodes/config-array/minimatch": "npm:3.1.5",
"@lerna/create/minimatch": "npm:3.1.5",
"eslint-plugin-import/minimatch": "npm:3.1.5",
"eslint-plugin-jsx-a11y/minimatch": "npm:3.1.5",
"eslint-plugin-react/minimatch": "npm:3.1.5",
"eslint/minimatch": "npm:3.1.5",
"jake/minimatch": "npm:3.1.5",
"lerna/minimatch": "npm:3.1.5",
"multimatch/minimatch": "npm:3.1.5",
"prettier-plugin-packagejson/sort-package-json": "3.6.1",
"test-exclude/minimatch": "npm:3.1.5",
"vite": "7.3.2"
},
"devDependencies": {
"@actions/cache": "6.0.0",
"@actions/core": "2.0.3",
"@actions/exec": "2.0.0",
"@actions/glob": "0.6.1",
"@babel/cli": "7.28.6",
"@babel/core": "^7.26.10",
"@babel/generator": "7.29.1",
"@babel/node": "7.29.0",
"@babel/plugin-proposal-decorators": "7.29.0",
"@babel/plugin-transform-react-jsx": "7.28.6",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@npmcli/arborist": "9.4.2",
"@playwright/test": "1.59.1",
"@prisma/dev": "0.24.7",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.6.1",
"@types/babel__generator": "7.27.0",
"@types/jest": "29.5.14",
"@types/jscodeshift": "17.3.0",
"@types/ncp": "2.0.8",
"@types/node": "24.10.4",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"@yarnpkg/types": "4.0.1",
"ansis": "4.2.0",
"babel-jest": "^29.7.0",
"babel-plugin-auto-import": "1.1.0",
"babel-plugin-remove-code": "0.0.6",
"boxen": "5.1.2",
"concurrently": "9.2.1",
"cross-env": "7.0.3",
"cypress": "13.17.0",
"cypress-fail-fast": "7.1.1",
"cypress-wait-until": "3.0.2",
"dependency-cruiser": "16.10.4",
"dotenv": "16.6.1",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-unused-imports": "4.4.1",
"execa": "5.1.1",
"fast-glob": "3.3.3",
"globals": "16.5.0",
"human-id": "^4.1.1",
"jest": "29.7.0",
"jscodeshift": "17.3.0",
"lefthook": "2.1.6",
"lerna": "9.0.7",
"listr2": "10.2.1",
"make-dir-cli": "4.0.0",
"msw": "1.3.5",
"ncp": "2.0.0",
"neon-new": "0.14.0",
"nodemon": "3.1.14",
"npm-packlist": "10.0.4",
"nx": "22.6.5",
"ora": "9.3.0",
"prettier": "3.8.3",
"prettier-plugin-curly": "0.3.2",
"prettier-plugin-packagejson": "3.0.2",
"prettier-plugin-sh": "0.18.1",
"prompts": "2.4.2",
"rimraf": "6.1.3",
"tree-kill": "1.2.2",
"ts-dedent": "2.2.0",
"tstyche": "5.0.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vitest": "3.2.4",
"yargs": "17.7.2",
"zx": "8.8.5"
},
"packageManager": "yarn@4.13.0",
"npmClient": "yarn"
}