-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
112 lines (112 loc) · 3.67 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
{
"name": "simple-stellar-signer",
"version": "0.1",
"type": "module",
"engines": {
"npm": ">=8.9.0",
"node": ">=16.4.0"
},
"scripts": {
"dev": "vite --https --host",
"dev:open": "vite --open --https",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint:fix": "eslint --fix --ext .ts --ext .svelte . && prettier --config .prettierrc --write . && npm run check",
"prepare": "husky install",
"test": "jest --coverage src",
"test:watch": "npm run test -- --watch",
"test:ui:dev": "cypress open",
"test:ui:headless": "cypress run",
"sonar:scan": "node .sonarqube/scan.cjs",
"parse:outputs": "node .codebuild/js/parseOutput.cjs | tee output.txt"
},
"lint-staged": {
"*.{svelte,js,ts}": "npm run lint:fix"
},
"jest": {
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest",
"^.+\\.svg$": "<rootDir>/svgTransform.cjs"
},
"coverageReporters": [
"clover",
"json",
"lcov",
[
"text-summary",
{
"file": "../coverage.txt"
}
]
],
"moduleFileExtensions": [
"js",
"ts",
"svelte"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"<rootDir>/jest.setup.ts"
],
"testEnvironment": "jsdom"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@trust/webcrypto": "^0.9.2",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"cypress": "^9.3.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"svelte": "^3.49.0",
"svelte-check": "^2.2.7",
"svelte-jester": "^2.1.5",
"svelte-loading-spinners": "^0.3.4",
"svelte-navigator": "^3.1.5",
"svelte-preprocess": "^4.9.8",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"vite": "^2.9.18"
},
"dependencies": {
"@creit-tech/xbull-wallet-connect": "github:Creit-Tech/xBull-Wallet-Connect",
"@lobstrco/signer-extension-api": "^1.0.0-beta.0",
"@stellar/freighter-api": "^1.4.0",
"@stellar/stellar-sdk": "^12.3.0",
"@walletconnect/modal": "^2.6.1",
"@walletconnect/sign-client": "^2.9.2",
"@walletconnect/types": "^2.9.2",
"buffer": "^6.0.3",
"decode-uri-component": "^0.2.2",
"json5": "^2.2.2",
"minimist": "^1.2.8",
"sonarqube-scanner": "^3.4.0",
"stellar-sdk": "^11.1.0",
"util": "^0.12.4"
}
}