-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "sigma-wallet",
"description": "Multisignature UI",
"homepage": "https://algobuilder.dev",
"license": "mpl-2.0",
"engines": {
"node": ">=14.11.0",
"yarn": ">=3.1.0"
},
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "yarn lint:js && yarn lint:prettier",
"start": "node .output/server/index.mjs",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint:fix": "prettier --write --list-different . && yarn lint:js --fix",
"upgrade:dependency": "npx yarn-upgrade-all",
"test": "echo 'no test'"
},
"dependencies": {
"@algo-builder/algob": "^6.0.0",
"@algo-builder/web": "^7.0.0",
"@ant-design/icons-vue": "^6.1.0",
"algosdk": "^1.23.2",
"ant-design-vue": "^3.2.15",
"core-js": "^3.21.1",
"crypto-browserify": "^3.12.0",
"pinia": "^2.0.24",
"stream-browserify": "^3.0.0",
"vue": "^3.2.45",
"vue-code-highlight": "^0.7.8",
"vue-router": "^4.1.6"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.**": "prettier --ignore-unknown --write"
},
"packageManager": "yarn@3.2.0",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/eslint-parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-plugin-eslint": "^5.0.1",
"@vue/cli-plugin-typescript": "^5.0.1",
"@vue/cli-service": "^5.0.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
}
}