This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
128 lines (128 loc) · 3.91 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": "litmus-ui",
"license": "Apache-2.0",
"version": "1.6.4",
"private": false,
"description": "Component Library for LitmusChaos",
"author": "LitmusChaos Authors",
"homepage": "https://github.com/litmuschaos/litmus-ui",
"bugs": {
"url": "https://github.com/litmuschaos/litmus-ui/issues"
},
"sideEffects": false,
"main": "./index.js",
"module": "./esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/litmuschaos/litmus-ui.git"
},
"scripts": {
"build": "yarn clean; rollup -c; yarn postBuild",
"postBuild": "node ./scripts/postBuild",
"clean": "rimraf dist",
"dev": "yarn storybook",
"format": "prettier --write \"src/**/*.{ts,tsx,json,js,jsx,md,mdx}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx,json,js,jsx,md,mdx}\"",
"lint": "yarn lint:script && yarn lint:style",
"lint:script": "eslint --ext js --ext jsx --ext ts --ext tsx --ext mdx src",
"lint:style": "stylelint src",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006 -s src -c .storybook",
"test": "jest --maxWorkers=2",
"test:clean": "jest --clearCache",
"test:watch": "yarn test --watch",
"test:coverage": "jest --coverage --colors --maxWorkers=2"
},
"lint-staged": {
"src/**/*.+(js|jsx|ts|tsx)": [
"yarn lint",
"yarn format",
"git add"
],
"src/**/*.+(json|md)": [
"yarn format"
],
"src/**/*.+(css)": [
"yarn format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"dependencies": {
"@material-ui/core": "4.11.4",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@rollup/plugin-image": "^2.0.6",
"@visx/react-spring": "^1.5.0",
"@visx/visx": "^1.11.1",
"d3-array": "^2.8.0",
"dayjs": "^1.10.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-inlinesvg": "^2.3.0",
"react-router-dom": "^5.2.0",
"react-spring": "^8.0.27"
},
"peerDependencies": {
"@material-ui/core": "4.11.4",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@visx/react-spring": "^1.5.0",
"d3-array": "^2.8.0",
"dayjs": "^1.10.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.2.0",
"react-spring": "^8.0.27"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/addon-actions": "^6.3.0",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-links": "^6.3.0",
"@storybook/addons": "^6.3.0",
"@storybook/react": "^6.3.0",
"@storybook/theming": "^6.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^10.0.2",
"@types/d3-array": "^2.3.0",
"@types/jest": "^26.0.24",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "^8.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-mdx": "^1.9.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^10.4.0",
"postcss-easy-import": "^3.0.0",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.6.0",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"stylelint": "^13.3.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^26.5.6",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3"
}
}