-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
84 lines (84 loc) Β· 2.39 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
{
"private": true,
"workspaces": [
"packages/*",
"website",
"benchmarks"
],
"scripts": {
"build": "lerna run build --ignore @xstyled/website --ignore @xstyled/benchmarks",
"reset": "lerna run reset --ignore @xstyled/website --ignore @xstyled/benchmarks",
"format": "prettier --write .",
"lint": "eslint .",
"release": "lerna publish --conventional-commits && conventional-github-releaser --preset angular",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/jest": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/serialize": "^1.1.0",
"@emotion/styled": "^11.10.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-jest": "^29.1.2",
"browser-resolve": "^2.0.0",
"bundlewatch": "^0.3.3",
"codecov": "^3.8.2",
"conventional-github-releaser": "^3.1.5",
"csstype": "^3.1.3",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jest-styled-components": "^7.1.1",
"lerna": "^5.5.4",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-code-editor": "^0.13.1",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"styled-components": "^6.1.11",
"typescript": "^4.8.4"
},
"resolutions": {
"smooth-doc/styled-components": "^5.2.3",
"smooth-doc/gatsby-plugin-robots-txt": "1.5.6"
},
"bundlewatch": {
"files": [
{
"path": "packages/core/dist/index.min.mjs",
"maxSize": "3kB"
},
{
"path": "packages/emotion/dist/index.min.mjs",
"maxSize": "2kB"
},
{
"path": "packages/styled-components/dist/index.min.mjs",
"maxSize": "1.3kB"
},
{
"path": "packages/system/dist/index.min.mjs",
"maxSize": "12kB"
},
{
"path": "packages/util/dist/index.min.mjs",
"maxSize": "0.7kB"
}
]
},
"packageManager": "yarn@3.6.1"
}