-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
94 lines (94 loc) · 3.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
85
86
87
88
89
90
91
92
93
94
{
"name": "@otto-de/b2b-core-components",
"version": "1.10.1",
"description": "Core components defined with Stencil",
"author": "Otto GmbH",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/otto-de/b2b-design-system"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/b2b-core-components/b2b-core-components.esm.js",
"files": [
"dist/"
],
"scripts": {
"build": "npm run build:icons && stencil build --docs",
"build:icons": "node scripts/generate-icon-types.mjs",
"start": "stencil build --dev --watch --serve --config stencil-dev.config.ts",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watch",
"generate": "stencil generate",
"lint": "eslint \"src/**/*{.ts,.tsx}\" && stylelint \"src/**/*{.scss,.css}\"",
"lint:fix": "eslint \"src/**/*{.ts,.tsx}\" --fix && stylelint \"src/**/*{.scss,.css}\" --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"copy-md-changelog": "copyfiles --flat ../../CHANGELOG.md src/docs/getting-started",
"copy-md-guidelines": "copyfiles --flat ../../DEV-GUIDELINES.md src/docs/guidelines",
"copy-md-files": "npm run copy-md-changelog && npm run copy-md-guidelines",
"storybook": "npm run copy-md-files && storybook dev -p 6006",
"build:storybook": "npm run copy-md-files && storybook build -o docs-build/design-system"
},
"dependencies": {
"@otto-de/b2b-tokens": "1.10.1",
"@stencil-community/eslint-plugin": "^0.5.0",
"@stencil/core": "^4.12.4"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-typescript": "^7.22.15",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@stencil-community/postcss": "^2.2.0",
"@stencil/react-output-target": "^0.5.3",
"@stencil/sass": "^3.0.10",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-docs": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-mdx-gfm": "^7.3.2",
"@storybook/preset-scss": "^1.0.3",
"@storybook/preview-api": "^7.3.2",
"@storybook/test-runner": "^0.16.0",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.3.2",
"@storybook/web-components": "^7.6.17",
"@storybook/web-components-webpack5": "^7.3.2",
"@types/jest": "^29.1.1",
"@types/mdx": "^2.0.7",
"@types/postcss-import": "^14.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.1",
"jest-cli": "^29.7.0",
"jest-image-snapshot": "^6.1.0",
"lint-staged": "^15.2.2",
"postcss-import": "^15.1.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-gfm": "^3.0.1",
"sass": "^1.71.0",
"sass-loader": "^13.3.2",
"storybook": "^7.3.2",
"style-loader": "^3.3.2",
"stylelint": "^15.6.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.4"
}
}