-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "decomposerize-root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/**"
],
"nohoist": [
"**/react-scripts",
"**/react-scripts/**"
],
"scripts": {
"eslint": "eslint packages/**/*/{src,__tests__}/**/*.js --format codeframe"
},
"devDependencies": {
"@babel/cli": "^7.x",
"@babel/core": "^7.x",
"@babel/eslint-parser": "^7.x",
"@babel/plugin-proposal-private-property-in-object": "^7.x",
"@babel/preset-env": "^7.x",
"@babel/preset-flow": "^7.x",
"@babel/preset-react": "^7.x",
"@stylistic/eslint-plugin-js": "^1.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.x",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"flow-bin": "^0.212.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"jest-environment-jsdom": "^27.4.3",
"jest-styled-components": "^7.2.0",
"prettier": "^3.x"
},
"dependencies": {
"lerna": "^7.4.2"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "./tools/eslint"
}
},
"jest": {
"moduleNameMapper": {
"styled-components/macro": "styled-components"
},
"prettierPath": null
}
}