-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.87 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
{
"name": "@adv-ui/react-components",
"version": "1.0.0",
"description": "Mono repo containing all Schibsted Spain React Components.",
"private": true,
"workspaces": [
"components/**"
],
"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",
"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",
"phoenix:ci": "npx @s-ui/mono@2 phoenix && npx -y ultra-runner --raw --recursive prepublishOnly &>/dev/null",
"phoenix": "npx @s-ui/mono@2 phoenix && npx -y ultra-runner --raw --recursive prepublishOnly",
"pre-commit": "sui-precommit run",
"start": "sui-studio start",
"test:jest": "jest",
"test:studio": "sui-studio test",
"test": "npm run test:studio && npm run test:jest",
"update:commit:status": "npx @s-ui/ci update-commit-status",
"pre-push": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/SUI-Components/adevinta-spain-components.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.24.8",
"@s-ui/documentation-library": "1",
"@s-ui/js-compiler": "1",
"@s-ui/lint": "4",
"@s-ui/precommit": "3",
"@s-ui/studio": "11.40.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.4.1",
"enzyme": "3.11.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.7.0",
"sinon": "11.1.1",
"jest-localstorage-mock": "2.4.21",
"typescript": "4.3.4",
"validate-commit-msg": "2.14.0"
},
"dependencies": {
"@s-ui/component-dependencies": "1",
"@s-ui/mono": "2",
"@s-ui/react-primitive-injector": "^1.2.0"
},
"overrides": {
"@babel/core": "^7.25.2"
},
"config": {
"sui-studio": {
"logo": "<img width='50' src='https://static.adevinta.com/wp-content/uploads/2019/03/AAFF_RGB_ADEVINTA-blue.png' />",
"font": "https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i",
"name": "Adevinta Spain Components"
},
"sui-mono": {
"access": "public",
"packagesFolder": "components",
"deepLevel": 2
},
"validate-commit-msg": {
"types": "@s-ui/mono/src/types"
}
},
"commit-msg": [
"validate-commit-msg"
],
"babel": {
"presets": [
"sui"
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}