-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "preconstruct dev",
"test": "jest",
"build": "preconstruct build",
"watch": "preconstruct watch",
"lint": "eslint '*/**/*.{js,ts,tsx}' --report-unused-disable-directives",
"outdated:all": "yarn outdated",
"upgrade:all": "yarn upgrade-interactive --latest"
},
"workspaces": [
"react-recaptcha-hook",
"example"
],
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@preconstruct/cli": "^2.0.1",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"rimraf": "3.0.2",
"typescript": "^4.1.3"
},
"preconstruct": {
"packages": [
"react-recaptcha-hook"
]
}
}