-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
103 lines (103 loc) · 2.76 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
{
"name": "ydb-ui-components",
"version": "4.3.2",
"description": "",
"license": "MIT",
"exports": {
".": {
"types": "./build/esm/index.d.ts",
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js"
}
},
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/esm/index.d.ts",
"sideEffects": [
"*.css",
"*.scss"
],
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ydb-platform/ydb-ui-components.git"
},
"bugs": {
"url": "https://github.com/ydb-platform/ydb-ui-components/issues"
},
"scripts": {
"clean": "gulp clean",
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 0",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:styles": "stylelint 'src/**/*.scss'",
"lint:other": "npm run prettier -- --check",
"lint": "run-p lint:*",
"prettier": "prettier '**/*.{json,md,yaml,yml}'",
"typecheck": "tsc --noEmit",
"start": "storybook dev -p 7002",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@bem-react/classname": "^1.6.0",
"react-list": "^0.8.17",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@gravity-ui/eslint-config": "^3.1.1",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/stylelint-config": "^4.0.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@gravity-ui/uikit": "^6.1.1",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@types/react-list": "^0.8.11",
"css-loader": "^6.10.0",
"eslint": "^8.57.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": "^9.0.11",
"nano-staged": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"storybook": "^7.6.17",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@gravity-ui/uikit": "^6.0.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"nano-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.{css,scss}": [
"stylelint --fix --quiet"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
}
}