-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.75 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
{
"name": "@atomone/atomone-staking",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"lint": "eslint -c .eslintrc.cjs \"./{tests,src}/**/*.{ts,js,tsx,vue,json}\" --no-error-on-unmatched-pattern --ignore-path .gitignore",
"lint:fix": "eslint -c .eslintrc.cjs \"./{tests,src}/**/*.{ts,js,tsx,vue,json}\" --fix --no-error-on-unmatched-pattern --ignore-path .gitignore",
"preview": "vite preview",
"test:e2e:serve": "serve -s dist -l 8080",
"test:e2e": "npx playwright install && playwright test",
"test:components": "npx playwright install && playwright test -c playwright-ct.config.ts",
"test:components:debug": "npx playwright install && playwright test -c playwright-ct.config.ts --debug",
"test:unit": "vitest run --reporter=verbose",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@agoose77/markdown-it-mermaid": "^1.1.0",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmostation/cosmos-client": "^0.0.5",
"@tailwindcss/typography": "^0.5.12",
"@tanstack/vue-query": "^5.59.13",
"@types/markdown-it": "^14.1.2",
"@vitest/coverage-istanbul": "^1.2.2",
"@vueuse/core": "^10.8.0",
"bech32": "^2.0.0",
"cosmjs-types": "^0.9.0",
"dayjs": "^1.11.10",
"dompurify": "^3.2.0",
"markdown-it": "^14.1.0",
"markdown-it-github-alert": "^1.0.6",
"vite-plugin-node-polyfills": "^0.22.0",
"vue-i18n": "^10.0.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@atomone/atomone-types": "^1.0.0",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@keplr-wallet/types": "^0.12.139",
"@playwright/experimental-ct-vue": "1.44.0-alpha-2024-04-05",
"@playwright/test": "1.44.0-alpha-2024-04-05",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"@vue/compiler-dom": "^3.4.21",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.17",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.21.1",
"happy-dom": "^14.4.0",
"mitt": "^3.0.1",
"mobx": "^6.12.0",
"mobx-vue-lite": "^0.4.2",
"postcss": "^8.4.33",
"postcss-nesting": "^12.0.4",
"prettier": "^3.2.4",
"serve": "^14.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.2.8",
"vitest": "^1.2.2",
"vue": "^3.5.12",
"vue-tsc": "^2.0.22"
}
}