-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.89 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
{
"name": "carbon-components-qwik",
"version": "0.0.21",
"description": "Carbon Design System components implemented as Qwik components",
"license": "Apache-2.0",
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib-types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib-types/index.d.ts"
}
},
"files": [
"lib",
"lib-types"
],
"engines": {
"node": ">=15.0.0"
},
"private": false,
"type": "module",
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"release": "np patch --no-git-checks",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"test": "vitest --testTimeout=20000",
"coverage": "vitest run --coverage --testTimeout=20000",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@builder.io/qwik": "1.5.1",
"@carbon/styles": "^1.55.0",
"@storybook/addon-a11y": "^8.0.8",
"@storybook/addon-actions": "^8.0.8",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/blocks": "^8.0.8",
"@storybook/test": "^8.0.8",
"@types/eslint": "8.37.0",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.17.0",
"@types/node": "^18.19.31",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"@vitest/coverage-istanbul": "^1.5.0",
"carbon-icons-qwik": "^11.39.1",
"classnames": "^2.5.1",
"eslint": "8.57.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-qwik": "latest",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-storybook": "^0.8.0",
"np": "10.0.2",
"prettier": "3.2.5",
"sass": "^1.75.0",
"short-unique-id": "^4.4.4",
"storybook": "^8.0.8",
"storybook-addon-sass-postcss": "^0.2.0",
"storybook-framework-qwik": "^0.4.0",
"typescript": "5.4.3",
"undici": "6.10.2",
"vite": "5.2.7",
"vitest": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/iancharlesdouglas/carbon-components-qwik.git"
},
"homepage": "https://github.com/iancharlesdouglas/carbon-components-qwik",
"issues": "https://github.com/iancharlesdouglas/carbon-components-qwik/issues",
"keywords": [
"carbon",
"carbon design system",
"components",
"component library",
"qwik"
],
"contributors": [
"Ian Douglas (https://github.com/iancharlesdouglas"
]
}