-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.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
{
"name": "chakra-ui-svelte",
"description": "Create accessible svelte apps with speed",
"version": "0.2.7",
"type": "module",
"main": "./index.js",
"homepage": "https://github.com/elcharitas/chakra-ui-svelte",
"repository": {
"type": "git",
"url": "https://github.com/elcharitas/chakra-ui-svelte"
},
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && vite build",
"package": "svelte-kit sync && svelte-package",
"preview": "vite preview",
"create:component": "hygen create component",
"create:typings": "hygen create typings",
"test:e2e": "playwright test",
"test": "vitest run src",
"test:watch": "vitest src",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint . --ext .svelte,.ts",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/styled-system": "^2.3.1",
"dash-get": "^1.0.2"
},
"peerDependencies": {
"@emotion/css": "^11.10.5",
"svelte": "^3.50.0",
"vite-plugin-css-injected-by-js": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@emotion/css": "^11.10.5",
"@playwright/test": "^1.20.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "^1.8.0",
"@sveltejs/package": "next",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"commitizen": "^4.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-unicorn": "^46.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"hygen": "^6.2.0",
"jsdom": "^21.1.1",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"svelte": "^3.50.1",
"svelte-check": "^3.0.1",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^5.0.0",
"svelte2tsx": "^0.6.0",
"tslib": "^2.4.1",
"typescript": "^4.7.4",
"vite": "^4.0.3",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vitest": "^0.29.7"
},
"optionalDependencies": {
"highlight.js": "^11.7.0",
"lunr": "^2.3.9",
"markdown-it-highlightjs": "^4.0.1",
"svelte-icons": "^2.1.0",
"vite-plugin-svelte-md": "^0.1.7"
},
"resolutions": {
"@types/jest": "npm:vitest"
}
}