-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.7 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "san-webkit",
"description": "The fastest way to build new Santiment web application",
"version": "0.0.1",
"author": "DmitriVanGuard <[email protected]>",
"type": "module",
"scripts": {
"ts": "tsc --outDir ./lib --p ./scripts/tsconfig.json",
"lib": "npm run lib:clean && npm run ts && node scripts/install.js",
"lib:clean": "node scripts/clean.js",
"lib:publish": "node scripts/publish --run",
"test": "vitest run",
"dev": "npm run storybook",
"dev:s": "npm run storybook --https --ssl-cert ./localhost.crt --ssl-key ./localhost.key",
"storybook": "storybook dev -p 4000 --ci",
"build:storybook": "node scripts/install.js && storybook build -o build",
"prepare": "husky install",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint src/**/*[^.test].{ts,svelte}",
"format": "prettier --plugin-search-dir . --write ."
},
"keywords": [],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/santiment/san-webkit"
},
"types": "lib/types/index.d.ts",
"lint-staged": {
"*.{js,ts,svelte,css,md,mdx}": [
"prettier --plugin-search-dir . --write"
],
"*.{js,ts,svelte}": [
"eslint --fix"
]
},
"dependencies": {
"@floating-ui/dom": "^1.2.7",
"air-datepicker": "^3.3.5",
"esm-env": "^1.0.0",
"fast-glob": "^3.2.5",
"patch-package": "^6.4.7"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-mdx-gfm": "^7.3.2",
"@storybook/blocks": "^7.3.2",
"@storybook/manager-api": "^7.3.2",
"@storybook/svelte": "^7.3.2",
"@storybook/sveltekit": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.3.2",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.22.3",
"@types/gtag.js": "0.0.4",
"@types/medium-editor": "^5.0.5",
"@types/node": "^15.0.2",
"@types/react": "^16.x.x",
"@types/stripe-v3": "^3.1.26",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-loader": "^8.2.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-svelte": "^2.33.0",
"estree-walker": "^3.0.3",
"ethers": "^5.4.4",
"graphql": "^16.7.1",
"happy-dom": "^10.5.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"magic-string": "^0.30.1",
"marked": "^6.0.0",
"medium-editor": "^5.23.3",
"miragejs": "^0.1.47",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.63.6",
"storybook": "^7.3.2",
"svelte": "^4.2.0",
"svelte-check": "^3.4.6",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^5.0.4",
"svelte-preprocess-cssmodules": "github:DmitriVanGuard/svelte-preprocess-cssmodules#3b24f22",
"svelte2tsx": "^0.6.11",
"svg-sprite": "^1.5.4",
"svgo": "^2.8.0",
"tslib": "^2.6.0",
"turndown": "^7.1.2",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vitest": "^0.33.0"
},
"peerDependencies": {
"@types/gtag.js": "0.0.4",
"@types/medium-editor": "^5.0.5",
"@types/stripe-v3": "^3.1.26",
"ethers": "^5.4.4",
"marked": "^6.0.0",
"medium-editor": "^5.23.3",
"node-fetch": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^4.1.2",
"turndown": "^7.1.2"
}
}