-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
100 lines (100 loc) · 3.03 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
{
"name": "@siemens/ix",
"homepage": "https://ix.siemens.io",
"bugs": "https://github.com/siemens/ix/issues",
"repository": {
"type": "git",
"url": "https://github.com/siemens/ix",
"directory": "packages/core"
},
"version": "2.7.0",
"license": "MIT",
"description": "Siemens iX Web Components",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"jsnext:main": "dist/esm/index.js",
"types": "dist/types/interfaces.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/siemens-ix/siemens-ix.esm.js",
"files": [
"LICENSE",
"README.md",
"components/",
"dist/",
"loader/",
"scss/",
"hydrate/"
],
"scripts": {
"build": "stencil build --prod && npm run build.scss",
"build.scss": "ts-node -P ./scripts/build/tsconfig.json ./scripts/build/build-css.ts",
"build.watch": "stencil build --watch",
"lint": "eslint src/**/*{.ts,.tsx}",
"start": "stencil build --dev --watch --serve",
"test": "npm run test.spec && npm run test.ct",
"test.spec": "stencil test --spec",
"test.ct": "playwright test --config playwright-ct.config.ts --reporter list",
"visual-regression": "playwright test",
"host-root": "http-server ./ -a 127.0.0.1 -p 8080 -c-1",
"generate": "stencil generate",
"pkg": "pnpm pack"
},
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@stencil/core": "~4.17.0",
"@types/luxon": "^3.3.7",
"animejs": "~3.2.1",
"luxon": "^3.4.4"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@siemens/ix-icons": "^2.0.0",
"@stencil-community/eslint-plugin": "^0.7.2",
"@stencil-community/postcss": "^2.2.0",
"@stencil/angular-output-target": "^0.8.3",
"@stencil/react-output-target": "0.5.3",
"@stencil/sass": "^3.0.8",
"@stencil/vue-output-target": "0.8.8",
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/animejs": "^3.1.4",
"@types/jest": "^29.5.6",
"@types/mustache": "^4.1.1",
"@types/node": "^20.16.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"animate.css": "~4.1.1",
"autoprefixer": "10.4.5",
"bootstrap": "^5.2.0",
"cssnano": "^6.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-ix": "workspace:*",
"eslint-plugin-react": "^7.33.2",
"fs-extra": "^10.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"mustache": "^4.2.0",
"postcss": "^8.4.29",
"puppeteer": "21.1.1",
"rimraf": "^5.0.5",
"sass": "^1.58.3",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@popperjs/core": "^2.11.0",
"@siemens/ix-icons": "^2.0.0",
"bootstrap": "~5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}