forked from SUI-Components/sui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.17 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
{
"name": "@s-ui/react-components",
"version": "1.0.0",
"description": "Mono repo, multi package containing all SUI components.",
"private": true,
"workspaces": [
"components/**"
],
"scripts": {
"build": "sui-studio build",
"check:release": "sui-studio check-release",
"co": "sui-studio 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",
"install:demos": "cd demo && sui-mono phoenix",
"install:themes": "node scripts/build-themes.js",
"phoenix": "sui-mono phoenix && npm run install:demos -- --no-audit",
"release": "sui-studio release",
"start": "sui-studio start",
"test": "sui-studio test",
"test:watch": "sui-studio test --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/SUI-Components/sui-components"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@s-ui/documentation-library": "1",
"@s-ui/helpers": "1",
"@s-ui/mono": "1",
"@s-ui/precommit": "2",
"@s-ui/studio": "9",
"fs-extra": "9.0.1",
"globby": "11.0.1",
"husky": "4.3.0",
"validate-commit-msg": "2.12.2",
"walker": "1.0.7"
},
"dependencies": {
"@s-ui/component-dependencies": "1"
},
"config": {
"sui-bundler": {
"vendor": [
"react",
"react-dom"
]
},
"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"
}
}
}