-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
{
"name": "web-client",
"version": "1.0.0-rc.1",
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn rsc"
},
"scripts": {
"vite-dev-server": "vite",
"vite-build": "vite build",
"start": "dotenv -e .env.local yarn vite-dev-server",
"build": "dotenv -e .env.production yarn vite-build",
"analyze": "dotenv -e .env.analyze yarn vite-build",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{vue,scss,css}\" --max-warnings=0",
"lint:scripts": "tsc --noEmit && vue-tsc --noEmit && eslint \"{src,config}/**/*.{vue,js,ts}\" --max-warnings=0",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs"
},
"dependencies": {
"@big-whale-labs/poseidon": "^0.0.5",
"@distributedlab/fetcher": "^1.0.0-rc.14",
"@distributedlab/jac": "^1.0.0-rc.14",
"@distributedlab/tools": "^1.0.0-rc.4",
"@types/qrcode": "^1.5.5",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"@vueuse/core": "^10.1.2",
"humps": "^2.0.1",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"pinia": "^2.0.28",
"postcss": "^8.4.20",
"qrcode": "^1.5.3",
"sha3": "^2.1.4",
"uuid": "^9.0.0",
"vue": "^3.3.2",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue-toastification": "^2.0.0-rc.5",
"vue-tsc": "^2.0.7"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@rushstack/eslint-patch": "^1.1.3",
"@types/humps": "^2.0.6",
"@types/lodash": "^4.14.194",
"@types/node": "^20.1.3",
"@types/uuid": "^9.0.2",
"@types/vuelidate": "^0.7.15",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"chalk": "^5.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.8.0",
"eslint-plugin-vue-i18n": "^0.3.0",
"postcss-html": "^1.5.0",
"prettier": "^2.8.1",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.1",
"stylelint": "^15.6.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-scss": "^5.0.0",
"typescript": "^5.0.4",
"vite": "^4.0.3",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.0.2",
"yorkie": "^2.0.0"
}
}