forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 4.04 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
101
102
103
104
105
106
107
108
109
110
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/auth-providers/*/*",
"packages/cli-packages/*",
"packages/mailer/core",
"packages/mailer/handlers/*",
"packages/mailer/renderers/*",
"packages/studio/web"
],
"scripts": {
"benchmark": "tsx ./tasks/benchmark/run-benchmarks.mts",
"build": "lerna run build",
"build:clean": "yarn node ./tasks/clean.mjs",
"build:clean:super": "git clean -fdx && yarn && yarn build",
"build:link": "node ./tasks/build-and-copy",
"build:test-project": "node ./tasks/test-project/test-project",
"build:watch": "lerna run build:watch --parallel; tsc --build",
"check": "yarn node ./tasks/check/check.mjs",
"clean:prisma": "rimraf node_modules/.prisma/client && node node_modules/@prisma/client/scripts/postinstall.js",
"e2e": "node ./tasks/run-e2e",
"generate-dependency-graph": "node ./tasks/generateDependencyGraph.mjs",
"lint": "RWJS_CWD=packages/create-redwood-app/templates/ts eslint --config .eslintrc.js --ignore-pattern Routes.jsx packages",
"lint:fix": "yarn lint --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",
"rebuild-test-project-fixture": "node ./tasks/test-project/rebuild-test-project-fixture.js",
"release": "node ./tasks/release/releaseCLI.mjs",
"smoke-test": "node ./tasks/smoke-tests/smoke-tests.mjs",
"test": "lerna run test --concurrency 2 -- --colors --maxWorkers=4",
"test-ci": "lerna run test --concurrency 2 -- --colors --maxWorkers"
},
"resolutions": {
"vscode-languageserver": "6.1.1",
"vscode-languageserver-protocol": "3.15.3",
"vscode-languageserver-textdocument": "1.0.8",
"vscode-languageserver-types": "3.17.3"
},
"devDependencies": {
"@actions/cache": "3.2.1",
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/glob": "0.4.0",
"@babel/cli": "7.23.0",
"@babel/core": "^7.22.20",
"@babel/generator": "7.23.0",
"@babel/node": "7.22.19",
"@babel/plugin-proposal-decorators": "7.23.2",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-nullish-coalescing-operator": "7.22.11",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@babel/runtime-corejs3": "7.23.2",
"@faker-js/faker": "8.0.2",
"@npmcli/arborist": "6.2.10",
"@playwright/test": "1.37.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@tsd/typescript": "5.1.6",
"@types/babel__generator": "7.6.5",
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.4",
"@types/jscodeshift": "0.11.6",
"@types/ncp": "2.0.5",
"@types/prompts": "2.4.4",
"all-contributors-cli": "6.26.1",
"babel-jest": "^29.7.0",
"babel-plugin-auto-import": "1.1.0",
"babel-plugin-remove-code": "0.0.6",
"boxen": "5.1.2",
"core-js": "3.32.2",
"cypress": "12.15.0",
"cypress-wait-until": "1.7.2",
"dependency-cruiser": "13.0.4",
"eslint": "8.46.0",
"fast-glob": "3.3.1",
"fs-extra": "11.1.1",
"jest": "29.7.0",
"jest-runner-tsd": "5.0.0",
"jscodeshift": "0.15.0",
"lerna": "7.3.0",
"listr2": "6.6.1",
"make-dir-cli": "3.0.0",
"msw": "1.3.1",
"ncp": "2.0.0",
"nodemon": "2.0.22",
"npm-packlist": "7.0.4",
"nx": "16.4.1",
"nx-cloud": "16.2.0",
"octokit": "2.1.0",
"ora": "6.3.1",
"prompts": "2.4.2",
"rimraf": "5.0.1",
"tsx": "3.12.7",
"typescript": "5.2.2",
"yargs": "17.7.2",
"zx": "7.2.2"
},
"packageManager": "[email protected]",
"npmClient": "yarn"
}