-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.83 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@reactify-components/core",
"version": "0.1.0",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"unpkg": "dist/index.min.js",
"scripts": {
"dev": "yarn docs:collect && next dev",
"docs:start": "next start",
"docs:collect": "node scripts/collect-meta.js",
"docs:seeds": "node scripts/seeds/update.js",
"docs:build": "yarn docs:collect & yarn docs:seeds && next build",
"prettier": "prettier --write .",
"lint": "eslint \"{@components,lib}/**/*.{js,ts,tsx}\"",
"test": "jest --config .jest.config.js --no-cache",
"test:update": "jest --config .jest.config.js --no-cache --update-snapshot",
"test:coverage": "yarn test --coverage",
"build:clear": "rm -rf ./dist ./esm",
"build:rollup": "rollup -c scripts/rollup.config.js",
"build:types": "ttsc -p ./scripts & ttsc -p ./scripts --outDir ./esm",
"build:monorepo": "turbo run build type",
"build": "yarn build:clear && yarn build:rollup && yarn build:types",
"release": "yarn build && yarn publish --access public --non-interactive",
"new:component": "node scripts/new-component.mjs",
"postinstall": "npm run build:monorepo"
},
"license": "MIT",
"description": "Modern and minimalist React UI library.",
"homepage": "https://geist-ui.dev",
"bugs": {
"url": "https://github.com/geist-org/geist-ui/issues/new/choose"
},
"repository": {
"type": "git",
"url": "https://github.com/geist-org/geist-ui"
},
"prettier": "@geist-ui/prettier-config",
"keywords": [
"geist",
"geist ui",
"components",
"react components",
"react ui"
],
"files": [
"/dist",
"/esm",
"/components"
],
"sideEffects": false,
"devDependencies": {
"@geist-ui/core": "2.3.8",
"@geist-ui/icons": "^1.0.1",
"@geist-ui/prettier-config": "^1.0.1",
"@mapbox/rehype-prism": "^0.6.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/bundle-analyzer": "^12.0.10",
"@next/mdx": "^12.0.8",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.2.0",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.6",
"@types/react": "^17.0.38",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"css-mediaquery": "^0.1.2",
"dts-bundle-generator": "6.12.0",
"enzyme": "^3.11.0",
"esbuild": "0.14.49",
"eslint": "^7.29.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-ts-lambdas": "^1.2.3",
"eslint-plugin-react": "^7.22.0",
"extract-mdx-metadata": "^1.0.0",
"fs-extra": "^10.0.0",
"inquirer": "^9.0.2",
"jest": "^27.0.5",
"lodash": "^4.17.21",
"next": "^12.0.9-canary.0",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"postcss-nested": "5.0.6",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-live": "^2.2.3",
"rehype-join-line": "^1.0.2",
"rollup": "^2.64.0",
"rollup-plugin-esbuild": "4.9.1",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-postcss": "4.0.2",
"styled-jsx": "4.0.1",
"tailwindcss": "3.1.6",
"ts-jest": "^27.0.3",
"ttypescript": "^1.5.13",
"turbo": "^1.3.4",
"typescript": "^4.5.4",
"typescript-transform-paths": "^3.3.1",
"zx": "^7.0.7"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"css-spring": "^4.1.0",
"react-transition-group": "^4.4.2"
}
}