forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs3": "^7.11.2",
"core-js": "3.6.5",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "11.1.0",
"@testing-library/user-event": "^12.0.11",
"@types/jest": "^26.0.14",
"babel-jest": "^26.5.2",
"babel-plugin-auto-import": "^1.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-remove-code": "^0.0.6",
"bundlesize": "^0.18.0",
"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.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.2",
"whatwg-fetch": "3.4.1"
},
"resolutions": {
"@types/react": "16.9.53"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config"
},
"scripts": {
"build": "lerna run build:js && tsc --build --verbose",
"build:clean": "rimraf ./packages/**/dist",
"build:watch": "tsc --build && lerna run build:watch --parallel",
"test": "lerna run test --stream -- --colors --maxWorkers=4",
"lint": "eslint packages",
"lint:fix": "eslint --fix packages"
}
}