-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.8 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
{
"name": "@s-ui/studio-docs-components",
"version": "1.0.0",
"description": "Useful components for Studio documentation",
"main": "components/index.js",
"scripts": {
"build": "sui-studio build",
"check:release": "sui-mono check",
"co": "sui-mono commit",
"commitmsg": "validate-commit-msg",
"dev": "sui-studio dev",
"generate": "sui-studio generate -S s-ui -P react",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "sui-lint js",
"lint:sass": "sui-lint sass",
"phoenix": "npx @s-ui/mono@2 run 'rm -rf ./node_modules' && rm -rf ./node_modules && npm install --legacy-peer-deps",
"phoenix:ci": "npm run phoenix -- --no-optional --no-fund --no-audit",
"release": "sui-mono release",
"start": "sui-studio start",
"storybook:start": "start-storybook -p 6006 -c components/documentation/library/.storybook/",
"storybook:build": "build-storybook -o dist/storybook",
"test": "cd components/documentation/library/ && npm run test"
},
"workspaces": [
"components/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SUI-Components/docs-components.git"
},
"author": "Adevinta S.L.",
"license": "MIT",
"bugs": {
"url": "https://github.com/SUI-Components/docs-components/issues"
},
"homepage": "https://github.com/SUI-Components/docs-components#readme",
"devDependencies": {
"@s-ui/helpers": "1",
"@s-ui/mono": "2",
"@s-ui/precommit": "2",
"@s-ui/studio": "10",
"@storybook/addon-actions": "6",
"@storybook/addon-essentials": "6",
"@storybook/addon-links": "6",
"@storybook/preset-scss": "1",
"@storybook/react": "6",
"core-js": "3",
"fs-extra": "10.0.0",
"globby": "11.0.3",
"husky": "4.3.0",
"validate-commit-msg": "2.12.2",
"walker": "1.0.7",
"webpack": "4"
},
"dependencies": {
"@s-ui/component-dependencies": "1"
},
"sui-bundler": {
"vendor": [
"react",
"react-dom",
"react-router"
],
"scripts": {
"defaultAttribute": "defer",
"inline": "runtime",
"prefetch": false,
"preload": false
}
},
"config": {
"sui-studio": {
"font": "https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i",
"name": "SUIComponents"
},
"sui-mono": {
"access": "public",
"packagesFolder": "components",
"deepLevel": 2
},
"validate-commit-msg": {
"types": "@s-ui/mono/src/types"
}
},
"commit-msg": [
"validate-commit-msg"
],
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"husky": {
"hooks": {
"pre-commit": "sui-precommit run"
}
}
}