forked from Infineon/Infineon-Design-System-Bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.45 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
{
"name": "@infineon/design-system-bootstrap",
"version": "1.0.2",
"private": false,
"description": "Infineon design system bootstrap components",
"homepage": "https://github.com/Infineon/IFX-Design-System-Bootstrap#readme",
"bugs": {
"url": "https://github.com/Infineon/IFX-Design-System-Bootstrap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Infineon/IFX-Design-System-Bootstrap.git"
},
"files": [
"dist",
"/src/**/*.scss",
"/src/**/*.js"
],
"source": "./dist/index.js",
"sass": "./src/index.scss",
"style": "./dist/index.css",
"main": "./index.js",
"license": "MIT",
"author": "Infineon Technologies AG",
"scripts": {
"storybook-prepare": "npm run bundle && npm run build",
"copy-fonts": "copyfiles -u 4 node_modules/@infineon/design-system-tokens/dist/fonts .storybook",
"build-docs": "node tools/createMarkdownStories.js",
"build-storybook": "build-storybook",
"build": "yarn copy-fonts && yarn build-docs && yarn build-storybook",
"watch-docs": "chokidar \"*.md\" -c \"yarn build-docs\" --initial",
"watch-storybook": "start-storybook -p 6006",
"watch-css": "chokidar \"src/**/*.scss\" -c \"yarn bundle-css\" --initial",
"storybook-start": "yarn copy-fonts && concurrently -r yarn:watch-*",
"bundle-css": "sass --load-path=node_modules --style=compressed --no-source-map .storybook/index.scss dist/index.css",
"bundle-js": "esbuild src/index.js --outfile=dist/index.js --bundle --platform=browser --minify --target=es6",
"bundle-fonts": "copyfiles -u 4 ./node_modules/@infineon/design-system-tokens/dist/fonts/**/* dist",
"bundle-assets": "copyfiles -u 1 ./public/* dist && copyfiles -u 1 ./public/**/* dist",
"bundle": "rimraf ./dist && concurrently -r yarn:bundle-*",
"package-source": "copyfiles -u ./src/* dist-sources && copyfiles -u ./src/**/* dist-sources",
"package-assets": "copyfiles -u ./public/* dist-sources",
"package": "rimraf ./dist-sources && concurrently -r yarn:package-*"
},
"peerDependencies": {
"bootstrap": "^5.1.3"
},
"dependencies": {
"@infineon/design-system-tokens": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-pro": "^6.1.1",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/pro-light-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.16",
"@storybook/addon-actions": "6.5.4",
"@storybook/addon-essentials": "6.5.4",
"@storybook/addon-links": "6.5.4",
"@storybook/builder-webpack4": "6.5.4",
"@storybook/manager-webpack4": "6.5.4",
"@storybook/react": "6.5.4",
"@whitespace/storybook-addon-html": "^5.0.0",
"auto": "^10.37.4",
"babel-loader": "^8.2.3",
"bootstrap": "^5.1.3",
"chokidar-cli": "^3.0.0",
"concurrently": "^6.4.0",
"copyfiles": "^2.4.1",
"css-loader": "^5",
"esbuild": "^0.14.38",
"holderjs": "^2.9.9",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^2.0.3",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.44.0",
"sass-loader": "^10",
"storybook-design-token": "^2.2.0",
"style-dictionary": "^3.0.3",
"style-loader": "^2"
},
"auto": {
"plugins": [
"npm",
"released"
],
"onlyPublishWithReleaseLabel": true
}
}