-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
90 lines (90 loc) · 2.88 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
{
"name": "@yandex-cloud/uikit",
"version": "1.2.1",
"description": "Yandex.Cloud UI components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yandex-cloud/uikit"
},
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"sideEffects": [
"*.css",
"*.scss"
],
"files": [
"build",
"styles"
],
"scripts": {
"test": "exit 0",
"clean": "gulp clean",
"build": "gulp",
"start": "npm run storybook:start",
"storybook:start": "start-storybook -p 7007",
"storybook:build": "build-storybook -c .storybook -o storybook-static",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:styles": "stylelint '{styles,src}/**/*.scss'",
"lint:prettier": "prettier --check --loglevel=error '**/*.{js,jsx,ts,tsx,scss}'",
"lint": "run-p lint:*",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"bem-cn-lite": "^4.0.0",
"focus-trap": "^6.7.1",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react-copy-to-clipboard": "^5.0.4",
"react-popper": "^2.2.5",
"react-sortable-hoc": "^2.0.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"resize-observer-polyfill": "^1.5.1",
"tslib": "^2.3.1",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.4.4",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.4",
"@types/lodash": "^4.14.177",
"@types/react": "^16.14.21",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.3.2",
"@yandex-cloud/eslint-config": "^1.0.0",
"@yandex-cloud/prettier-config": "^1.0.0",
"@yandex-cloud/stylelint-config": "^1.0.0",
"@yandex-cloud/tsconfig": "^1.0.0",
"css-loader": "^5.2.7",
"eslint": "^8.2.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",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"prettier": "2.4.1",
"react": "^16.14.0",
"react-docgen-typescript": "^2.1.1",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.0",
"rimraf": "^3.0.2",
"sass": "^1.44.0",
"sass-loader": "^10.2.0",
"style-loader": "^2.0.0",
"stylelint": "^14.1.0",
"typescript": "^4.4.4",
"webpack": "^4.46.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^5.0.0"
}
}