-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.34 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
{
"name": "@jota-ds/lib-react",
"description": "Jota Design System",
"version": "1.0.7",
"license": "MIT",
"author": "Meiuca <meiuca@meiuca.design>",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"files": [
"dist",
"src",
"babel.config.json",
"rollup.config.js",
"theme-replace.js",
"package.json",
"next.js"
],
"repository": {
"url": "https://github.com/Meiuca/jota-ds-react.git"
},
"keywords": [
"jota",
"meiuca"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"storybook": "start-storybook -p 6006 -s src --no-manager-cache",
"build-storybook": "build-storybook -s src",
"build": "rollup -c"
},
"dependencies": {
"@jota-ds/context-element-react": "^1.0.0",
"@jota-ds/motion-tokens": "^1.0.4",
"focus-visible": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.10",
"@babel/preset-react": "^7.13.13",
"@babel/cli": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/node-logger": "^6.2.9",
"@storybook/source-loader": "^6.3.4",
"@storybook/builder-webpack5": "^6.3.4",
"@storybook/manager-webpack5": "^6.3.4",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/react": "^11.2.6",
"babel-loader": "8.1.0",
"lodash": "^4.17.21",
"rollup": "^2.52.8",
"@rollup/plugin-babel": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-delete": "^2.0.0",
"@rollup/plugin-json": "^4.1.0",
"html-inputtypes": "^1.0.1",
"prop-types": "^15.7.2",
"react-scripts": "^4.0.3",
"sinon": ">=4.0.0 <11.0.0",
"url-loader": "^4.1.1",
"@rollup/plugin-node-resolve": "*",
"react": ">=16.14",
"react-dom": ">=16.14"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"next": "^11",
"react": ">=16.14",
"react-dom": ">=16.14"
}
}