-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build --stream",
"dev": "lerna run dev --parallel",
"npm-publish": "lerna publish --no-private",
"lint": "eslint packages/**"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"eslint-plugin-react-hooks": "^4.6.2"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/react": "^18.3.12",
"eslint": "^8.57.0",
"eslint-config-universe": "^14.0.0",
"lerna": "^8.1.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.26.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.6.3"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules",
"dist",
"tmp",
".next",
"packages/styleguide-icons/index.*",
"packages/styleguide-icons/mergeClasses.*"
],
"rules": {
"max-len": [
"warn",
{
"code": 120
}
]
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"bracketSameLine": true,
"trailingComma": "es5"
}
}