-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2 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
{
"name": "@gravity-ui/package-example",
"version": "0.0.1",
"description": "",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/package-example.git"
},
"bugs": {
"url": "https://github.com/gravity-ui/package-example/issues"
},
"homepage": "https://github.com/gravity-ui/package-example#readme",
"scripts": {
"prepare": "husky",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:styles": "stylelint 'src/**/*.scss'",
"lint": "run-p lint:*",
"typecheck": "tsc --noEmit",
"test": "jest",
"build": "tsc",
"start": "TS_NODE_PROJECT=.storybook/tsconfig.json storybook dev",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@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",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.0.0",
"@storybook/react-webpack5": "^8.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nano-staged": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"storybook": "^8.0.0",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"nano-staged": {
"*.{scss}": [
"stylelint --fix --quiet"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.md": [
"prettier --write"
]
}
}