forked from drips-network/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.24 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
{
"name": "drips-app-2",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"dev:local-env:start-app": "PUBLIC_TEST_MODE=true vite dev",
"dev:local-env:start-env": "docker compose up",
"dev:local-env:stop-env": "docker compose down",
"build": "vite build",
"preview": "vite preview",
"test:e2e": "PUBLIC_TEST_MODE=true vitest run e2e",
"test:unit": "vitest run unit",
"e2e": "npm run build && npm run test:e2e",
"coverage": "vitest run --coverage",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"postinstall": "./scripts/install-twemoji-assets.sh && ./scripts/install-design-system-static-assets.sh"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@playwright/test": "^1.32.3",
"@rsksmart/mock-web3-provider": "^1.0.2-beta1",
"@sveltejs/adapter-auto": "^1.0.2",
"@sveltejs/adapter-vercel": "^2.3.0",
"@sveltejs/kit": "^1.20.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.1",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"autoprefixer": "^10.4.9",
"dotenv": "^16.3.1",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-svelte3": "^4.0.0",
"execa": "^7.1.1",
"fs": "^0.0.1-security",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"node-fetch": "^3.2.10",
"playwright": "^1.32.3",
"postcss": "^8.4.16",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.3.3",
"tslib": "^2.3.1",
"typescript": "^4.9.0",
"vite": "^4.1.5",
"vite-plugin-node-polyfills": "^0.9.0",
"vitest": "^0.25.3"
},
"dependencies": {
"@efstajas/svelte-stored-writable": "^0.2.0",
"@efstajas/versioned-parser": "^0.1.0",
"@gelatonetwork/relay-sdk": "^4.0.0",
"@octokit/rest": "^19.0.7",
"@pinata/sdk": "^1.1.26",
"@safe-global/safe-apps-provider": "^0.16.0",
"@safe-global/safe-apps-sdk": "^7.10.0",
"@sveltejs/adapter-netlify": "^2.0.6",
"@tanstack/svelte-table": "^8.5.15",
"@uniswap/default-token-list": "^10.0.0",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@web3-onboard/core": "^2.20.2",
"@web3-onboard/injected-wallets": "^2.10.1",
"@web3-onboard/walletconnect": "^2.3.9",
"cupertino-pane": "^1.3.2",
"ethers": "^5.7.0",
"fuzzysort": "^2.0.3",
"git-dep-url": "github:jtourkos/git-dep-url",
"isomorphic-fetch": "^3.0.0",
"radicle-design-system": "github:radicle-dev/radicle-design-system#brandon+jason/drips-restyle",
"radicle-drips": "github:radicle-dev/drips-js-sdk#feature/dependency-funding",
"twemoji": "^14.0.2",
"web3modal": "^1.9.9",
"zod": "^3.19.1"
},
"type": "module"
}