-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) Β· 2.63 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) Β· 2.63 KB
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,
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" run build",
"reset": "pnpm -r --filter \"./packages/*\" run reset",
"format": "prettier --write .",
"lint": "eslint .",
"release": "pnpm run build && changeset publish",
"test": "jest",
"bench:runtime": "node scripts/bench-runtime.mjs",
"check:types": "node scripts/check-types.mjs",
"bench:types": "node scripts/bench-types.mjs"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.27.7",
"@xstyled/core": "workspace:*",
"@xstyled/emotion": "workspace:*",
"@xstyled/prop-types": "workspace:*",
"@xstyled/styled-components": "workspace:*",
"@xstyled/system": "workspace:*",
"@xstyled/util": "workspace:*",
"@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",
"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",
"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"
},
"pnpm": {
"overrides": {
"smooth-doc>styled-components": "^5.2.3",
"smooth-doc>gatsby-plugin-robots-txt": "1.5.6",
"@types/minimatch": "^5.1.2"
}
},
"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": "pnpm@10.33.0"
}