-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
100 lines (100 loc) · 2.8 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
{
"name": "@gravity-ui/chartkit",
"version": "1.5.1",
"description": "React component used to render charts based on any sources you need",
"license": "MIT",
"repository": "[email protected]:gravity-ui/ChartKit.git",
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@gravity-ui/yagr": "^2.2.2",
"bem-cn-lite": "^4.1.0",
"highcharts": "^8.2.2",
"highcharts-react-official": "^3.0.0",
"lodash": "^4.17.21",
"react-split-pane": "^0.1.92"
},
"devDependencies": {
"@gravity-ui/eslint-config": "^1.0.2",
"@gravity-ui/i18n": "^1.0.0",
"@gravity-ui/prettier-config": "^1.0.1",
"@gravity-ui/stylelint-config": "^1.0.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@gravity-ui/uikit": "^3.5.0",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.9",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.177",
"@types/node": "^18.0.0",
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"eslint": "^8.11.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-dart-sass": "^1.0.2",
"gulp-replace": "^1.1.3",
"gulp-typescript": "^5.0.1",
"husky": "^4.2.5",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "^10.2.7",
"moment": "^2.29.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.56.2",
"sass-loader": "^10.2.1",
"style-loader": "^2.0.0",
"stylelint": "^14.6.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"moment": "^2.19.3",
"@gravity-ui/uikit": "^3.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "gulp clean",
"start": "cross-env TS_NODE_PROJECT=.storybook/tsconfig.json start-storybook -p 7007",
"build": "gulp",
"lint:js": "eslint --quiet --ext .js,.jsx,.ts,.tsx .",
"lint:styles": "stylelint '{styles,src}/**/*.scss' --quiet",
"lint:prettier": "prettier --check --loglevel=error '**/*.{js,jsx,ts,tsx,scss}'",
"lint": "run-p lint:*",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix --quiet",
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet",
"prettier --write"
]
}
}