This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 3.05 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
{
"name": "workstreams-app",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "vite package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "eslint --fix && prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"prepare": "husky install",
"postinstall": "svelte-kit sync && scripts/install-twemoji-assets.sh && scripts/install-design-system-static-assets.sh",
"apollo:update-schema": "npx apollo service:download --endpoint=https://api.thegraph.com/subgraphs/name/gh0stwheel/drips-on-ethereum graphql-schema.json",
"typechain:generate-contract-types": "npx typechain --target ethers-v5 --out-dir './src/lib/stores/drips/contracts/types' './src/lib/stores/drips/contracts/**/*.json'",
"apollo:generate-types": "npx apollo codegen:generate --localSchemaFile=graphql-schema.json --target=typescript --tagName=gql",
"test": "TZ='UTC' jest",
"test:watch": "TZ='UTC' yarn run test -- --watchAll",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@sveltejs/adapter-auto": "^1.0.0-next.63",
"@sveltejs/kit": "^1.0.0-next.392",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.1.3",
"@typechain/ethers-v5": "^10.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.6",
"@types/marked": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"apollo": "^2.33.11",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.7",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.7",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3",
"vite": "^3.0.3"
},
"type": "module",
"dependencies": {
"@fontsource/fira-mono": "^4.5.7",
"@lukeed/uuid": "^2.0.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/providers": "^9.0.0",
"@walletconnect/qrcode-modal": "^1.7.8",
"@walletconnect/web3-provider": "^1.7.8",
"cupertino-pane": "^1.3.0",
"drips-sdk": "https://github.com/radicle-dev/drips-js-sdk#973599caf3013a2ac56155f11b8cd2426ff263d1",
"ethers": "5.6.4",
"graphql-tag": "^2.12.6",
"radicle-design-system": "https://github.com/radicle-dev/radicle-design-system#ecedcb410730a0a9c47b797b2018bcb52723b681",
"siwe": "^1.1.6",
"web3-utils": "^1.7.3"
},
"lint-staged": {
"*.{js,css,svelte,ts}": "eslint --cache --fix",
"*.{js,css,md,ts,svelte}": "prettier --write"
},
"packageManager": "[email protected]"
}