forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.99 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:clean": "yarn clean:prisma && rimraf \"packages/**/dist\"",
"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/cli.mjs",
"release:test": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --config ./tasks/release/jest.config.mjs",
"branch-strategy": "yarn node ./tasks/release/branchStrategy/branchStrategyCLI.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": {
"@types/react": "17.0.50",
"microtime": "3.1.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.7.4",
"vscode-languageserver": "6.1.1",
"vscode-languageserver-protocol": "3.15.3",
"vscode-languageserver-textdocument": "1.0.7",
"vscode-languageserver-types": "3.17.2"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/generator": "7.20.4",
"@babel/node": "7.20.2",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.20.2",
"@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.18.6",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime-corejs3": "7.20.1",
"@nrwl/nx-cloud": "15.0.2",
"@playwright/test": "1.27.1",
"@replayio/playwright": "0.3.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@tsd/typescript": "4.8.4",
"@types/babel__generator": "7.6.4",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.2.2",
"@types/jscodeshift": "0.11.5",
"@types/lodash.template": "4.5.1",
"@types/ncp": "2.0.5",
"@types/prompts": "2.4.1",
"all-contributors-cli": "6.24.0",
"ansi-colors": "4.1.3",
"babel-jest": "29.3.1",
"babel-plugin-auto-import": "1.1.0",
"babel-plugin-remove-code": "0.0.6",
"boxen": "5.1.2",
"core-js": "3.26.0",
"cypress": "11.0.1",
"cypress-wait-until": "1.7.2",
"eslint": "8.27.0",
"fast-glob": "3.2.12",
"fs-extra": "10.1.0",
"is-port-reachable": "3.1.0",
"jest": "29.3.1",
"jest-runner-tsd": "4.0.0",
"jscodeshift": "0.14.0",
"lerna": "6.0.3",
"listr2": "5.0.5",
"lodash.template": "4.5.0",
"make-dir-cli": "3.0.0",
"msw": "0.48.2",
"ncp": "2.0.0",
"node-notifier": "10.0.1",
"nodemon": "2.0.20",
"npm-packlist": "5.1.3",
"nx": "15.0.13",
"octokit": "2.0.8",
"ora": "5.4.1",
"prompts": "2.4.2",
"rimraf": "3.0.2",
"terminal-link": "2.1.1",
"typescript": "4.7.4",
"typescript-transform-paths": "3.3.1",
"zx": "7.1.1"
},
"packageManager": "[email protected]",
"npmClient": "yarn"
}