forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 3.39 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:js && yarn build:types",
"build:clean": "yarn clean:prisma && rimraf packages/**/dist",
"build:js": "lerna run build:js",
"build:link": "node ./tasks/build-and-copy",
"build:test-project": "node ./tasks/test-project/test-project",
"build:types": "tsc --build --verbose",
"build:watch": "lerna run build:watch --parallel; tsc --build",
"check": "yarn node ./tasks/check/check.mjs",
"check:deps": "yarn node ./tasks/checkDeps.mjs $INIT_CWD",
"check:tarball": "yarn jest ./tasks/checkTarball.test.js",
"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",
"publish:canary": "lerna publish --force-publish --canary --include-merged-tags --preid canary --dist-tag canary --yes --loglevel verbose",
"release": "node ./tasks/release/cli.mjs",
"test": "lerna run test --stream -- --colors --maxWorkers=4",
"test:release-script": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --config ./tasks/release/jest.config.mjs"
},
"resolutions": {
"@types/react": "17.0.39",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.5.5",
"vscode-languageserver": "6.1.1",
"vscode-languageserver-protocol": "3.15.3",
"vscode-languageserver-textdocument": "1.0.4",
"vscode-languageserver-types": "3.16.0"
},
"devDependencies": {
"@actions/core": "1.6.0",
"@actions/exec": "1.1.0",
"@babel/cli": "7.16.7",
"@babel/core": "7.16.7",
"@babel/node": "7.16.7",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.16.7",
"@babel/plugin-transform-runtime": "7.16.7",
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime-corejs3": "7.16.7",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.0",
"@types/jscodeshift": "0.11.3",
"@types/lodash.template": "4.5.0",
"@types/prompts": "2.4.0",
"all-contributors-cli": "6.20.0",
"ansi-colors": "4.1.1",
"babel-jest": "27.5.1",
"babel-plugin-auto-import": "1.1.0",
"babel-plugin-remove-code": "0.0.6",
"boxen": "5.1.2",
"core-js": "3.21.0",
"cypress": "9.4.1",
"cypress-wait-until": "1.7.2",
"eslint": "8.8.0",
"fast-glob": "3.2.11",
"jest": "27.5.1",
"jscodeshift": "0.13.1",
"lerna": "4.0.0",
"lodash.template": "4.5.0",
"msw": "0.36.8",
"node-notifier": "10.0.1",
"nodemon": "2.0.15",
"npm-packlist": "3.0.0",
"octokit": "1.7.1",
"ora": "5.4.1",
"prompts": "2.4.2",
"rimraf": "3.0.2",
"terminal-link": "2.1.1",
"typescript": "4.5.5",
"typescript-transform-paths": "3.3.1",
"zx": "5.0.0"
},
"npmClient": "yarn",
"packageManager": "[email protected]"
}