forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.58 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/auth-providers/*/*"
],
"scripts": {
"build": "lerna run build",
"build:clean": "yarn clean:prisma && rimraf \"packages/**/dist\" --glob",
"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",
"lint": "RWJS_CWD=packages/create-redwood-app/template eslint --config .eslintrc.js 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",
"release": "node ./tasks/release/releaseCLI.mjs",
"smoke-test": "cd ./tasks/smoke-test && npx playwright install && npx playwright test",
"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/core": "1.10.0",
"@actions/exec": "1.1.1",
"@babel/cli": "7.21.0",
"@babel/core": "7.21.3",
"@babel/generator": "7.21.3",
"@babel/node": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.0",
"@babel/plugin-transform-runtime": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.0",
"@babel/runtime-corejs3": "7.21.0",
"@faker-js/faker": "7.6.0",
"@npmcli/arborist": "6.2.6",
"@nrwl/nx-cloud": "15.3.5",
"@playwright/test": "1.32.2",
"@replayio/playwright": "0.3.28",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@tsd/typescript": "5.0.3",
"@types/babel__generator": "7.6.4",
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.0",
"@types/jscodeshift": "0.11.6",
"@types/lodash.template": "4.5.1",
"@types/ncp": "2.0.5",
"@types/prompts": "2.4.4",
"all-contributors-cli": "6.24.0",
"babel-jest": "29.5.0",
"babel-plugin-auto-import": "1.1.0",
"babel-plugin-remove-code": "0.0.6",
"boxen": "5.1.2",
"core-js": "3.30.0",
"cypress": "12.9.0",
"cypress-wait-until": "1.7.2",
"eslint": "8.37.0",
"fast-glob": "3.2.12",
"fs-extra": "11.1.1",
"is-port-reachable": "3.1.0",
"jest": "29.5.0",
"jest-runner-tsd": "5.0.0",
"jscodeshift": "0.14.0",
"lerna": "6.6.1",
"listr2": "5.0.8",
"lodash.template": "4.5.0",
"make-dir-cli": "3.0.0",
"msw": "1.2.1",
"ncp": "2.0.0",
"nodemon": "2.0.22",
"npm-packlist": "7.0.4",
"nx": "15.9.2",
"octokit": "2.0.14",
"ora": "5.4.1",
"prompts": "2.4.2",
"rimraf": "4.4.1",
"typescript": "5.0.3",
"yargs": "17.7.1",
"zx": "7.2.1"
},
"packageManager": "yarn@3.5.0",
"npmClient": "yarn"
}