-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
{
"name": "@galachain/galachain-ui-parent",
"private": true,
"version": "1.4.11",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build:web-components": "rimraf packages/galachain-ui/dist && vite build --config vite.config.web-components.ts",
"build:vue": "rimraf packages/galachain-ui-vue/dist && vite build --config vite.config.vue.ts",
"build": "npm run build:web-components && npm run build:vue",
"preview": "vite preview",
"test:unit": "vitest",
"type-check": "vue-tsc --build --force",
"lint": "node license-check.js && eslint .",
"fix": "eslint . --fix",
"format": "prettier --write src/",
"storybook": "storybook dev"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@gala-chain/api": "^1.4.10",
"@heroicons/vue": "^2.1.3",
"@vitejs/plugin-vue": "5.1.2",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"bignumber.js": "^9.1.2",
"glob": "11.0.0",
"primevue": "^3.52.0",
"tailwindcss": "^3.4.4",
"vite": "^5.4.2",
"vite-plugin-dts": "3.9.1",
"vitest": "1.6.0",
"vue": "^3.4.21"
},
"peerDependencies": {
"class-transformer": "*"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@rushstack/eslint-patch": "^1.8.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/core-server": "^8.3.5",
"@storybook/manager-api": "^8.3.5",
"@storybook/test": "^8.3.5",
"@storybook/test-runner": "^0.13.0",
"@storybook/theming": "^8.3.5",
"@storybook/vue3": "^8.3.5",
"@storybook/vue3-vite": "^8.3.5",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.5",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.5",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"glob": "^11.0.0",
"jsdom": "^24.0.0",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rimraf": "^5.0.8",
"storybook": "^8.3.5",
"typescript": "~5.4.0",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.11"
}
}