generated from gravity-ui/package-example
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
134 lines (134 loc) · 3.94 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
129
130
131
132
133
134
{
"name": "@gravity-ui/date-components",
"version": "2.11.0",
"description": "",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.js",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"sideEffects": [
"*.css",
"*.scss"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/date-components.git"
},
"bugs": {
"url": "https://github.com/gravity-ui/date-components/issues"
},
"homepage": "https://github.com/gravity-ui/date-components#readme",
"scripts": {
"prepare": "husky",
"lint": "run-p lint:*",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx --report-unused-disable-directives .",
"lint:styles": "stylelint --report-needless-disables 'src/**/*.scss'",
"lint:other": "npm run prettier -- --check",
"prettier": "prettier '**/*.{md,yaml,yml,json}'",
"typecheck": "tsc --noEmit",
"test": "jest",
"clean": "gulp clean",
"build": "gulp",
"start": "storybook dev -p 7070",
"build-storybook": "storybook build -c .storybook -o storybook-static",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@bem-react/classname": "^1.6.0",
"@gravity-ui/date-utils": "^2.5.3",
"@gravity-ui/icons": "^2.2.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@gravity-ui/eslint-config": "^3.2.0",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/stylelint-config": "^4.0.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@gravity-ui/uikit": "^6.15.0",
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-storysource": "^8.2.9",
"@storybook/addon-viewport": "^8.2.9",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.2.9",
"@storybook/manager-api": "^8.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@storybook/types": "^8.2.9",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-c8b3f72-20240517",
"eslint-plugin-testing-library": "^6.2.2",
"gulp": "^5.0.0",
"gulp-cli": "^3.0.0",
"gulp-dart-sass": "^1.1.0",
"gulp-replace": "^1.1.4",
"gulp-typescript": "^5.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"nano-staged": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"sass": "^1.77.1",
"storybook": "^8.2.9",
"stylelint": "^15.11.0",
"stylelint-use-logical": "^2.1.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@gravity-ui/uikit": "^6.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"overrides": {
"nwsapi": "2.2.2"
},
"nano-staged": {
"*.{scss}": [
"stylelint --fix --quiet --report-needless-disables"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet --report-unused-disable-directives"
],
"*.{md,json,yml,yaml}": [
"prettier --write"
]
}
}