forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.11 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
{
"scripts": {
"build": "lerna run build:js && ttsc --build --verbose",
"build:types": "ttsc --build --verbose",
"build:clean": "rimraf ./packages/**/dist",
"build:watch": "lerna run build:watch --parallel; ttsc --build",
"build:link": "./tasks/build-link",
"test": "lerna run test --stream -- --colors --maxWorkers=4",
"lint": "cross-env __REDWOOD__CONFIG_PATH=packages/create-redwood-app/template eslint -c .eslintrc.js packages",
"lint:fix": "cross-env __REDWOOD__CONFIG_PATH=packages/create-redwood-app/template eslint -c .eslintrc.js --fix packages"
},
"private": true,
"license": "MIT",
"npmClient": "yarn",
"useWorkspaces": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "7.13.14",
"@babel/core": "7.13.15",
"@babel/node": "7.13.13",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-decorators": "7.13.15",
"@babel/plugin-transform-runtime": "7.13.15",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime-corejs3": "7.13.10",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "13.1.6",
"@types/jest": "^26.0.14",
"babel-jest": "^26.5.2",
"babel-plugin-auto-import": "1.1.0",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-remove-code": "0.0.6",
"core-js": "3.10.1",
"cp-cli": "^2.0.0",
"cross-env": "^7.0.2",
"jest": "^26.5.3",
"lerna": "^3.20.2",
"msw": "0.21.2",
"nodemon": "^2.0.6",
"npm-packlist": "^2.1.5",
"rimraf": "^3.0.2",
"ttypescript": "^1.5.12",
"typescript": "^4.1.3",
"typescript-transform-paths": "^2.2.2",
"whatwg-fetch": "3.4.1"
},
"resolutions": {
"@types/react": "17.0.3",
"prop-types": "15.7.2",
"react-dom": "17.0.1",
"react": "17.0.1",
"typescript": "4.1.3",
"vscode-languageserver-protocol": "3.15.3",
"vscode-languageserver-types": "3.15.1",
"vscode-languageserver": "6.1.1",
"vscode-languageserver-textdocument": "1.0.1"
}
}