-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.37 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
{
"name": "grommet-exp",
"version": "0.1.0",
"exports": "./index.js",
"types": "index.d.ts",
"sideEffects": [
"*.css"
],
"description": "focus on the essential experience",
"authors": [
"Eric Soderberg",
"Taylor Seamans"
],
"bugs": "https://github.com/grommet/grommet/issues",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/grommet/grommet.git"
},
"engine-strict": true,
"engines": {
"node": ">= 16"
},
"scripts": {
"lint": "eslint . --ext .ts",
"build": "rollup -c ./rollup.config.mjs",
"push": "cd dist && yalc push",
"release-stable": "babel-node ./tools/release-stable.mjs"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"grommet-exp-theme": "https://github.com/grommet/grommet-exp-theme/tarball/stable",
"hpe-design-tokens": "https://github.com/grommet/hpe-design-tokens/tarball/stable"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.13.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vanilla-extract/css": "^1.9.5",
"@vanilla-extract/recipes": "^0.3.0",
"core-js": "^3.27.2",
"del": "^6.1.1",
"es-module-shims": "^1.6.3",
"eslint": "^8.34.0",
"fs-extra": "^11.1.1",
"modern-css-reset": "^1.4.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup": "^3.15.0",
"rollup-plugin-clean": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"simple-git": "^3.17.0",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"browserslist": [
"last 2 chrome versions",
"last 2 safari versions",
"last 2 firefox versions",
"last 2 edge versions",
"> 0.5%"
]
}