generated from gravity-ui/package-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
{
"name": "@gravity-ui/illustrations",
"version": "2.0.0",
"description": "Pack of Gravity UI illustrations",
"license": "MIT",
"files": [
"*.d.ts",
"*.js",
"!.*.js",
"svgs",
"styles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/illustrations.git"
},
"bugs": {
"url": "https://github.com/gravity-ui/illustrations/issues"
},
"homepage": "https://github.com/gravity-ui/illustrations#readme",
"scripts": {
"prepare": "husky",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:styles": "stylelint 'src/**/*.scss' 'styles/**/*.scss' '.storybook/**/*.scss'",
"lint": "run-p lint:*",
"typecheck": "tsc --noEmit",
"test": "exit 0",
"build": "tsc",
"start": "TS_NODE_PROJECT=.storybook/tsconfig.json storybook dev",
"prepublishOnly": "npm run build",
"optimize": "npx svgo -f svgs --multipass",
"generate": "node scripts/generate-templates.mjs && node scripts/generate-components-from-templates.mjs && node scripts/generate-svgs-from-templates.mjs"
},
"devDependencies": {
"@bem-react/classname": "^1.6.0",
"@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": "^7.0.0",
"@storybook/addon-essentials": "^8.0.2",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/manager-api": "^8.0.2",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.0.2",
"@storybook/react-webpack5": "^8.0.2",
"@storybook/theming": "^8.0.2",
"@svgr/core": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"eslint": "^8.57.0",
"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",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"storybook": "^8.0.2",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"svgo": "^3.3.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"
]
}
}