forked from facebook/react-strict-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.47 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
{
"private": true,
"version": "0.0.0",
"name": "rsd-monorepo",
"scripts": {
"build": "npm run build --workspaces --if-present",
"flow": "flow",
"format": "prettier --write \"**/*.js\"",
"format:report": "prettier --check \"**/*.js\"",
"jest": "npm run jest --workspaces --if-present --",
"jest:report": "npm run jest:report --workspaces --if-present --",
"lint": "npm run lint:report -- --fix",
"lint:report": "eslint packages",
"test": "npm run flow && npm run lint:report && npm run jest:report",
"postinstall": "patch-package && npm run jest -- --clearCache && npm run build",
"prepare": "husky install tools/husky"
},
"devDependencies": {
"@babel/cli": "^7.22.0",
"@babel/core": "^7.22.0",
"@babel/eslint-parser": "^7.22.0",
"@babel/helper-module-imports": "^7.22.15",
"@babel/plugin-transform-flow-comments": "^7.22.0",
"@babel/plugin-transform-runtime": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"@babel/preset-flow": "^7.22.5",
"@babel/preset-react": "^7.22.0",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.7.0",
"babel-plugin-syntax-hermes-parser": "^0.20.1",
"death": "^1.1.0",
"del-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-ft-flow": "^3.0.7",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.5.0",
"flow-api-translator": "^0.20.1",
"flow-bin": "^0.233.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jscodeshift": "^0.15.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.3",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-hermes-parser": "^0.20.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": ">=0.71.0",
"react-test-renderer": "^18.2.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"**/*.js": [
"prettier --write",
"git update-index --again",
"eslint --config .eslintrc"
]
},
"prettier": {
"plugins": [
"prettier-plugin-hermes-parser"
],
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": [
"*.js",
"*.jsx",
"*.flow"
],
"options": {
"parser": "hermes"
}
}
]
},
"license": "MIT"
}