-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
100 lines (100 loc) · 3.44 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
{
"name": "app",
"version": "0.0.0",
"title": "ZKsync Era Block Explorer App",
"description": "ZKsync Era Block Explorer App",
"author": "Matter Labs",
"private": true,
"license": "MIT",
"repository": "https://github.com/matter-labs/block-explorer",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"start": "vite preview --port 3010",
"test": "TZ=UTC-3 vitest --environment jsdom",
"test:ci": "TZ=UTC-3 vitest --environment jsdom --run --reporter=verbose --reporter=junit --outputFile.junit=./junit.xml",
"test:e2e": "cucumber-js -t \"not @testnet\"",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public",
"postinstall": "rm -rf ./node_modules/@types/react && rm -rf ../../node_modules/@types/react"
},
"prettier": "@matterlabs/prettier-config",
"lint-staged": {
"*.{vue,js,ts}": "npm run lint"
},
"dependencies": {
"@metamask/detect-provider": "^2.0.0",
"@metamask/providers": "^10.2.1",
"@vueuse/components": "8.9.2",
"@vueuse/core": "8.9.2",
"date-fns": "2.28.0",
"ohmyfetch": "0.4.21",
"prismjs": "1.27.0",
"sass-loader": "12.6.0",
"vue": "3.2.42",
"vue-i18n": "9.2.0-beta.35",
"vue-prism-editor": "2.0.0-alpha.2",
"vue-router": "4.0.14",
"vue-tippy": "6.0.0",
"zksync-ethers": "6.14.0"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@cucumber/cucumber": "^8.4.0",
"@cucumber/html-formatter": "^19.2.0",
"@cucumber/messages": "^19.1.2",
"@cucumber/pretty-formatter": "^1.0.0",
"@headlessui/vue": "1.5.0",
"@heroicons/vue": "1.0.6",
"@matterlabs/eslint-config-vue": "^1.1.4",
"@playwright/test": "1.27.0",
"@rushstack/eslint-patch": "^1.1.0",
"@sentry/cli": "^2.18.1",
"@sentry/tracing": "^7.54.0",
"@sentry/vite-plugin": "^0.4.0",
"@sentry/vue": "^7.54.0",
"@storybook/addon-a11y": "6.4.19",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-docs": "6.4.19",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "6.4.19",
"@storybook/manager-webpack5": "6.4.19",
"@storybook/vue3": "6.4.19",
"@tailwindcss/forms": "0.5.0",
"@testing-library/user-event": "14.2.1",
"@testing-library/vue": "6.6.0",
"@types/jsdom": "16.2.14",
"@types/node": "^16.11.25",
"@types/prismjs": "1.26.0",
"@vitejs/plugin-vue": "2.2.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "2.0.0-rc.18",
"@vue/tsconfig": "0.1.3",
"@vuelidate/core": "2.0.0-alpha.40",
"@vuelidate/validators": "2.0.0-alpha.28",
"allure-cucumberjs8": "^2.0.0-beta.15",
"autoprefixer": "10.4.4",
"babel-loader": "8.2.3",
"c8": "7.11.2",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-vue": "^8.2.0",
"ethers": "6.13.4",
"jsdom": "19.0.0",
"playwright": "1.27.0",
"postcss": "^8.4.12",
"prettier-plugin-tailwindcss": "^0.2.2",
"sass": "^1.49.9",
"start-server-and-test": "^1.14.0",
"storybook-vue3-router": "^2.2.1",
"tailwindcss": "^3.0.23",
"vite": "2.9.16",
"vitest": "0.19.0",
"vue-loader": "16.8.3",
"vue-tsc": "0.33.6"
}
}