-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
128 lines (128 loc) · 3.75 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
122
123
124
125
126
127
128
{
"name": "react-jupiter-development",
"version": "2.0.0",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"evand",
"design system",
"component",
"react",
"styled-component"
],
"contributors": [
"@arashmanteghi",
"https://github.com/marzzy",
"@mehranshiri"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/evandhq/react-jupiter"
},
"bugs": {
"url": "https://github.com/evandhq/react-jupiter/issues"
},
"dependencies": {
"@mdx-js/react": "^2.1.5",
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^5.3.21",
"@storybook/addon-links": "^5.3.21",
"@storybook/addon-storyshots": "^5.3.21",
"@storybook/addons": "^5.3.21",
"@storybook/react": "^6.4.9",
"babel-plugin-macros": "^2.8.0",
"babel-preset-react-app": "^9.1.2",
"moment-jalaali": "^0.9.4",
"prop-types": "^15.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.38.0",
"react-lazy-load-image-component": "^1.5.1",
"react-modal": "3.16.1",
"react-responsive": "^8.2.0",
"react-router-dom": "^5.3.0",
"react-scripts": "^3.4.4",
"react-sidenav": "^4.0.6",
"styled-components": "^5.3.11",
"styled-components-grid": "^2.2.2",
"styled-components-spacing": "^3.1.1",
"styled-media-query": "^2.1.2"
},
"scripts": {
"start": "react-app-rewired start",
"build:doc": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom --silent",
"test:coverage": "react-app-rewired test --silent --coverage",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "./node_modules/.bin/eslint ./src --fix",
"build:lib": "del-cli ./lib && babel src/components -d lib --presets minify && cp package.lib.json lib/package.json && cp README.md lib/ && cp CHANGELOG.md lib/ && cp LICENSE lib/ && del-cli ./lib/**/*.stories.js && del-cli ./lib/**/*.test.js",
"version": "auto-changelog -p && git add CHANGELOG.md",
"storybook": "start-storybook -p 6006 -s public",
"build:storybook": "build-storybook -s public",
"deploy:storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook -s public"
},
"husky": {
"hooks": {
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-flow": "^7.16.7",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/node-logger": "^6.4.9",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/storybook-deployer": "2.8.6",
"auto-changelog": "^1.16.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-minify": "^0.5.1",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.1",
"babel-preset-react": "^6.24.1",
"del-cli": "^2.0.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"flow-bin": "^0.117.0",
"husky": "^3.1.0",
"jest-enzyme": "^7.1.2",
"jest-styled-components": "^7.2.0",
"node-sass": "7.0.3",
"react-app-rewired": "^2.1.11",
"react-test-renderer": "^16.14.0",
"require-context.macro": "^1.2.2"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}