-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.6 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"analyze": "source-map-explorer ./packages/*/es/index.js",
"build": "lerna run build",
"coverage": "jest ./packages --coverage --ci",
"coverage/report": "npm run coverage && codecov --disable=gcov",
"lint": "eslint --ext .jsx,.js --cache packages/*/src",
"pre-commit": "lint-staged",
"preanalyze": "npm run build",
"precoverage": "rm -rf coverage",
"prelint": "prettier --check .",
"prepare": "husky",
"stylelint": "stylelint \"packages/*/src/*.css\"",
"test": "npm run lint && npm run stylelint && jest"
},
"devDependencies": {
"@babel/cli": "7.24.5",
"@babel/core": "7.24.5",
"@babel/eslint-parser": "7.24.5",
"@babel/plugin-transform-class-properties": "7.24.1",
"@babel/plugin-transform-object-rest-spread": "7.24.5",
"@babel/plugin-transform-private-methods": "7.24.1",
"@babel/plugin-transform-runtime": "7.24.3",
"@babel/preset-env": "7.24.5",
"@babel/preset-react": "7.24.1",
"@babel/register": "7.23.7",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@rollup/plugin-terser": "0.4.4",
"@svgr/rollup": "8.1.0",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.3",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-styled-components": "2.1.4",
"cheerio": "1.0.0-rc.10",
"codecov": "3.8.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-plugin-unicorn": "52.0.0",
"eslint-restricted-globals": "0.2.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"postcss-preset-env": "9.5.11",
"postcss-url": "8.0.0",
"prettier": "3.2.5",
"rollup": "4.17.2",
"rollup-plugin-postcss": "4.0.2",
"source-map-explorer": "2.5.3",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "29.0.0"
},
"engines": {
"node": ">=20.12",
"npm": ">=10.5"
},
"lint-staged": {
"*.{js,jsx,ts}": "eslint --fix",
"*.css": "stylelint --fix"
}
}