-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.17 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
{
"name": "dex-ui",
"version": "1.20.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test 'vite --mode test --host' http://localhost:5173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite --mode test' http://localhost:5173 'cypress open --e2e'",
"lint:script": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"lint:style": "stylelint \"src/**/*.{css,scss,vue}\"",
"lint": "npm run lint:script && npm run lint:style",
"format": "prettier -w .",
"format:check": "prettier -c ."
},
"dependencies": {
"@aeternity/aepp-sdk": "13.3.2",
"@fontsource/ibm-plex-sans": "^5.0.18",
"@popperjs/core": "^2.11.8",
"@sentry/tracing": "^7.101.0",
"@sentry/vue": "^7.101.0",
"@vueuse/head": "^2.0.0",
"bignumber.js": "^9.1.2",
"chart.js": "^4.4.3",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^3.6.0",
"dex-contracts-v2": "github:aeternity/dex-contracts-v2#69f800fece02da1444af7f0d6622fec356a15496",
"node-polyfill-webpack-plugin": "^3.0.0",
"vue": "^3.4.19",
"vue-chartjs": "^5.3.1",
"vue-i18n": "^9.9.1",
"vue-router": "^4.2.5",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0",
"vuex-router-sync": "^6.0.0-rc.1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-airbnb": "^8.0.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.4",
"autoprefixer": "^10.4.19",
"cypress": "^13.6.4",
"eslint": "^8.2.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.21.1",
"file-loader": "^6.2.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"sass": "^1.70.0",
"start-server-and-test": "^2.0.3",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.0.0",
"tailwindcss": "^3.4.4",
"vite": "^5.1.3",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.2.2"
}
}