-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 3.36 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
{
"name": "plusweb",
"version": "0.0.1",
"private": true,
"description": "React-native View implementation for web",
"workspaces": {
"packages": [
"src/component",
"src/core",
"src/asset",
"src/stories",
"src/tests",
"src/share"
]
},
"homepage": "http://hosseinmd.github.io/reactjs-view",
"scripts": {
"compile": "tsc -b",
"build": "yarn lerna-clean && yarn lerna-build",
"lint": "eslint . --ext tsx,ts --fix",
"lint-commit": "cross-env COMMIT=true eslint . --ext tsx,ts --fix",
"test": "yarn build && react-app-rewired test --detectOpenHandles",
"prettierAll": "prettier --write .",
"storybook": "start-storybook -p 6006 -s public",
"storybook-build": "yarn build && build-storybook -s public",
"release": "yarn build && yarn lint-commit && yarn compile && react-app-rewired test --silent --watchAll=false && npx lerna publish",
"lerna-build": "lerna run compile --stream",
"lerna-clean": "lerna run clean --parallel",
"predeploy": "yarn storybook-build",
"deploy": "gh-pages -d storybook-static",
"build-storybook": "build-storybook -s public"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@faker-js/faker": "^7.2.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/node-logger": "^6.5.9",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.43",
"@types/react": "^18.0.12",
"@types/react-native": "^0.69.2",
"@types/react-dom": "^18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"commitlint": "^17.0.2",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.12",
"eslint-webpack-plugin": "^3.1.1",
"jest": "^28.1.1",
"jest-watch-typeahead": "^1.1.0",
"lerna": "^5.1.2",
"prettier": "^2.7.0",
"prettier-plugin-jsdoc": "^0.3.38",
"prettier-plugin-organize-imports": "^2.3.4",
"react": "^18.1.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@sentry/browser": "^7.1.1",
"react-test-renderer": "^18.2.0",
"typescript": "^4.7.3"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"publishConfig": {
"registry": "https://github.com/hosseinmd/reactjs-view"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}