forked from santiment/san-webkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.8 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
{
"name": "san-webkit",
"description": "The fastest way to build new Santiment web application",
"version": "0.0.1",
"author": "DmitriVanGuard <[email protected]>",
"scripts": {
"ts": "tsc --outDir ./lib --declaration",
"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": "jest",
"dev": "npm run lib && BACKEND_URL=https://api-stage.santiment.net start-storybook --ssl-cert ./.cert/cert.pem --ssl-key ./.cert/key.pem --https -h local.santiment.net -p 3000 -s ./lib --ci",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"keywords": [],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Woafflation/san-webkit-test"
},
"types": "lib/types/index.d.ts",
"lint-staged": {
"*.{js,ts,svelte,css,md,mdx}": [
"prettier --write"
]
},
"precommit": [
"test"
],
"prepush": [
"test"
],
"dependencies": {
"@types/gtag.js": "0.0.4",
"@types/marked": "^4.0.2",
"@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",
"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-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-svelte-csf": "^1.1.0",
"@storybook/svelte": "^6.4.19",
"@types/jest": "^29.2.0",
"@walletconnect/client": "^1.8.0",
"@walletconnect/qrcode-modal": "^1.8.0",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"ethers": "^5.4.4",
"husky": "^7.0.4",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^11.0.0",
"marked": "^4.0.12",
"medium-editor": "^5.23.3",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"react": "^16.x.x",
"react-dom": "^16.x.x",
"sass": "^1.49.8",
"svelte": "^3.49.0",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^4.10.7",
"svelte-preprocess-cssmodules": "https://github.com/DmitriVanGuard/svelte-preprocess-cssmodules#3b24f22",
"svg-sprite": "^1.5.4",
"svgo": "^2.8.0",
"ts-jest": "^29.0.3",
"turndown": "^7.1.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"svelte": "^3.46.3",
"node-fetch": "^2.6.1",
"react": "^16.x.x",
"react-dom": "^16.x.x",
"@types/react": "^16.x.x",
"ethers": "^5.4.4",
"turndown": "^7.1.1",
"medium-editor": "^5.23.3",
"marked": "^4.0.12",
"@walletconnect/client": "^1.8.0",
"@walletconnect/qrcode-modal": "^1.8.0"
}
}