forked from nerisina/anv-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.55 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.55 KB
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
{
"name": "@anyvision/anv-ui-components",
"version": "1.0.0-beta.188",
"main": "dist/index.js",
"description": "Anyvision Components Library",
"license": "MIT",
"private": false,
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/AnyVisionltd/anv-ui-components"
},
"dependencies": {
"@anyvision/style-guide": "1.0.4-beta.13",
"@anyvision/anv-icons": "^1.0.0-beta.27",
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.12.3",
"@material-ui/pickers": "^3.3.10",
"@popperjs/core": "^2.6.0",
"classnames": "^2.2.6",
"jest-environment-jsdom-sixteen": "^1.0.3",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react-beautiful-dnd": "^13.0.0",
"react-popper": "^2.2.4",
"react-transition-group": "^4.4.1",
"react-virtualized-auto-sizer": "^1.0.4",
"react-vtree": "^2.0.4",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.5"
},
"scripts": {
"build": "rollup -c",
"start": "npm run storybook",
"test": "react-scripts test",
"lint": "eslint -c .eslintrc.js src",
"lint:fix": "eslint -c .eslintrc.js src --fix",
"test:staged": "cross-env CI=true react-scripts test --bail --env=jsdom --findRelatedTests",
"test-jenkins": "CI=true npm test",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook",
"prepublishOnly": "npm run build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@storybook/addon-actions": "6.1.21",
"@storybook/addon-controls": "6.1.21",
"@storybook/addon-docs": "6.1.21",
"@storybook/addon-knobs": "6.1.21",
"@storybook/addon-storyshots": "6.1.21",
"@storybook/addons": "6.1.21",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "6.1.21",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^3.7.0",
"@testing-library/user-event": "^12.6.2",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "2.1.2",
"pretty-quick": "^3.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^4.0.1",
"react-test-renderer": "^16.14.0",
"rollup": "^2.38.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-url": "^3.0.1",
"typescript": "^4.2.0",
"url-loader": "^4.1.1"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/jest/__mocks__/style.js",
"\\.(gif|ttf|eot)$": "<rootDir>/jest/__mocks__/file.js",
"\\.(svg)$": "<rootDir>/jest/__mocks__/svg.js"
}
}
}