-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.66 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
{
"name": "sha-el-design",
"version": "0.2.14",
"description": "React Components",
"main": "./lib/",
"typings": "./lib/",
"module": "./lib/",
"repository": "https://gitlab.com/sha-el/sha-el-design.git",
"author": "Anit <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib && tsc",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"prepublishOnly": "yarn build",
"test": "yarn jest",
"test:ci": "jest --testLocationInResults --ci --coverage",
"build-storybook": "build-storybook",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix --max-warnings=0 . && tsc --noEmit"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-icons": "^3.3.0"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.0",
"@popperjs/core": "^2.9.2",
"color": "^3.1.3",
"csstips": "^1.2.0",
"debounce": "^1.2.0",
"rc-slider": "^9.6.2",
"react-popper": "^2.2.5",
"react-pose": "^4.0.10",
"rxjs": "^6.6.2"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@emotion/eslint-plugin": "^11.2.0",
"@storybook/addon-actions": "^6.4.12",
"@storybook/addon-contexts": "^5.3.21",
"@storybook/addon-essentials": "^6.4.12",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.12",
"@storybook/cli": "^6.4.12",
"@storybook/react": "^6.4.12",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/color": "^3.0.1",
"@types/debounce": "^1.2.0",
"@types/jest": "^26.0.23",
"@types/rc-tooltip": "^3.7.3",
"@types/react": "^17.0.6",
"@types/react-dom": "^16.0.5",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-loader": "^8.1.0",
"codecov": "^3.8.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"husky": "^4.2.5",
"jest": "^27.0.4",
"lint-staged": "^10.2.13",
"mockdate": "^3.0.5",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"source-map-loader": "^1.0.2",
"stylelint": "^13.6.1",
"ts-jest": "^27.0.2",
"typescript": "4.2.4"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}