-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 3 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
{
"name": "arcana-developer-dashboard",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"lint": "run-s lint:all:*",
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"lint:stylelint": "stylelint --fix",
"lint:all:eslint": "npm run lint:eslint -- . --ext .vue,.ts --ignore-path .gitignore",
"lint:all:markdownlint": "npm run lint:markdownlint -- \"**/*.md\" --ignore-path .gitignore",
"lint:all:prettier": "npm run lint:prettier -- \"**/*.{ts,json,css,scss,vue,html,md}\" --ignore-path .gitignore",
"lint:all:stylelint": "npm run lint:stylelint -- \"**/*.{vue,css,scss}\" --ignore-path .gitignore",
"prepare": "husky install",
"test:e2e": "start-server-and-test preview :5050 'cypress open'",
"test:e2e:ci": "start-server-and-test preview :5050 'cypress run'",
"test:unit": "vitest",
"test:unit:ci": "vitest run --coverage",
"test:unit:file": "vitest related",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
},
"dependencies": {
"@arcana/auth": "^1.0.11-beta.1",
"@headlessui/vue": "^1.7.16",
"@heroicons/vue": "^2.0.18",
"@sentry/tracing": "^6.16.1",
"@sentry/vue": "^6.16.1",
"axios": "^0.21.1",
"bytes": "^3.1.0",
"chart.js": "^3.5.0",
"cssnano": "^5.0.8",
"ethers": "^5.4.7",
"jsonp": "^0.2.1",
"moment": "^2.29.1",
"pinia": "^2.0.17",
"postcss-custom-media": "^8.0.0",
"postcss-media-variables": "^2.0.1",
"punycode": "^2.1.1",
"v-wave": "^1.3.1",
"vue": "^3.0.5",
"vue-gtag": "^2.0.1",
"vue-router": "^4.0.10",
"vue3-carousel": "^0.2.9",
"vue3-circle-progress": "^1.0.6",
"vue3-popper": "^1.5.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@types/bytes": "^3.1.1",
"@types/node": "^17.0.26",
"@vitejs/plugin-vue": "^1.2.5",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.21",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.14",
"c8": "^7.11.2",
"cypress": "^9.6.0",
"eslint": "^8.14.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"markdownlint-cli": "^0.31.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.22",
"prettier": "^2.6.2",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.7.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"tailwindcss": "^3.3.1",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vitest": "^0.9.4",
"vue-tsc": "^0.34.8"
}
}