-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
103 lines (103 loc) · 2.98 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
{
"name": "@s-ui/react-components",
"version": "1.0.0",
"description": "Mono repo, multi package containing all SUI components.",
"private": true,
"workspaces": [
"components/**",
"utils/**"
],
"scripts": {
"build": "sui-studio build",
"bundler:postinstall": "node ./node_modules/@s-ui/bundler/scripts/postinstall.js",
"check:release": "sui-mono check",
"clean": "rm -rf ./node_modules && rm -f package-lock.json",
"co": "sui-mono commit",
"commit-msg": "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",
"respawn": "npm run clean && npm run phoenix && npm run install:themes",
"install:themes": "node scripts/build-themes.js",
"install:ci": "npm ci --include=dev --no-found --no-audit && npx -y ultra-runner --raw --recursive prepublishOnly",
"phoenix": "npx @s-ui/mono@2 phoenix && npx -y ultra-runner --raw --recursive prepublishOnly",
"release": "sui-mono release",
"start": "sui-studio start",
"serve": "npm run build && npx http-server public",
"test": "sui-studio test -- --headless --coverage",
"test:watch": "sui-studio test --watch",
"pre-commit": "npm run lint:js -- --staged && npm run lint:sass -- --staged",
"pre-push": "npm run test",
"types:check": "tsc"
},
"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/js-compiler": "1",
"@s-ui/lint": "4",
"@s-ui/mono": "2",
"@s-ui/precommit": "3",
"@s-ui/studio": "11",
"@types/chai": "4.3.16",
"@types/chai-dom": "1.11.3",
"@types/classnames": "2.2.5",
"@types/mocha": "10.0.6",
"@types/react-dom": "18.3.0",
"fs-extra": "10.0.1",
"globby": "11.0.3",
"sinon": "11.1.1",
"validate-commit-msg": "2.12.2"
},
"dependencies": {
"@s-ui/component-dependencies": "1"
},
"overrides": {
"dset": "3.1.4",
"micromatch": "4.0.8",
"webpack": "5.94.0"
},
"config": {
"sui-bundler": {
"type": "typescript",
"vendor": [
"react",
"react-dom"
],
"optimizations": {
"splitFrameworkOnChunk": true,
"useExperimentalMinifier": true
}
},
"sui-mono": {
"access": "public"
},
"sui-studio": {
"font": "https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i",
"name": "SUIComponents"
},
"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"
}