-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.14 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
{
"name": "@grams-dev/ui",
"version": "0.0.28",
"author": "grams-dev",
"homepage": "https://github.com/grams-dev/ui#readme",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"description": "A semantic and intuitive user interface for seamless interaction in React",
"scripts": {
"setup": "npm install",
"build": "rimraf dist && rollup -c",
"start": "npm run storybook",
"test": "jest",
"test:watch": "jest --watch",
"create:component": "node ./scripts/create-component",
"create:page": "node ./scripts/create-page",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build && npm run build:cname",
"build:cname": "cpx ./CNAME ./storybook-static/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grams-dev/ui.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/grams-dev/ui/issues"
},
"dependencies": {
"react-qrcode-logo": "^2.9.0",
"react-tiny-fab": "^4.0.4",
"uniqid": "^5.4.0"
},
"peerDependencies": {
"@grams-dev/i18n": ">=0.0.10",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"react-i18next": ">=13.0.3",
"react-icons": ">=4.10.1",
"semantic-ui-react": ">=2.1.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@grams-dev/i18n": "^0.0.23",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@storybook/addon-a11y": "^7.2.1",
"@storybook/addon-docs": "^7.2.1",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-mdx-gfm": "^7.1.1",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/blocks": "^7.1.1",
"@storybook/cli": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-webpack5": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/mocha": "^10.0.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"colors": "^1.4.0",
"cpx": "^1.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"mocha": "^10.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"semantic-ui-css": "^2.5.0",
"storybook": "^7.1.1",
"storybook-addon-react-docgen": "^1.2.43",
"storybook-react-i18next": "^2.0.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}