-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.32 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
{
"name": "san-studio",
"version": "0.0.1",
"author": "DmitriVanGuard <[email protected]>",
"types": "lib/types/index.d.ts",
"type": "module",
"lint-staged": {
"*.{js,ts,svelte,css,md,mdx}": [
"prettier --write"
]
},
"precommit": [
"test"
],
"prepush": [
"test"
],
"scripts": {
"dev": "vite --port 3000",
"dev:s": "vite --port 3000 --host --https",
"build": "vite build",
"serve": "vite preview",
"test": "jest",
"validate": "svelte-check",
"validate:errors": "yarn validate --threshold error",
"ts": "tsc --outDir ./lib --p ./scripts/tsconfig.json",
"lib": "npm run lib:prepare && node scripts/lib.js",
"lib:prepare": "npm run lib:clean && npm run ts",
"lib:clean": "node scripts/clean.js",
"lib:publish": "node scripts/publish",
"prepare": "husky install && patch-package"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@santiment-network/chart": "^0.10.18",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.13",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"air-datepicker": "^3.3.5",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-svelte3-preprocess": "0.0.5",
"ethers": "^5.4.4",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.3.7",
"marked": "^4.0.12",
"mathjs": "^9.4.4",
"medium-editor": "^5.23.3",
"node-fetch": "^2.6.1",
"patch-package": "^6.4.7",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"san-webkit": "https://github.com/santiment/san-webkit#adc41e14",
"sass": "^1.49.8",
"svelte": "^4.1.1",
"svelte-check": "^1.5.2",
"svelte-preprocess": "^5.0.4",
"svelte-preprocess-cssmodules": "https://github.com/DmitriVanGuard/svelte-preprocess-cssmodules#3b24f22",
"ts-jest": "^26.5.6",
"turndown": "^7.1.1",
"typescript": "^4.7.4",
"vite": "^4.3.5",
"vite-plugin-ts-checker": "^0.1.5"
},
"peerDependencies": {
"svelte": "^3.56.0",
"@santiment-network/chart": "^0.10.19",
"san-webkit": "https://github.com/santiment/san-webkit",
"mathjs": "^9.4.4",
"air-datepicker": "^3.3.5"
}
}