-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "wallet-connect-template",
"version": "1.0.0",
"license": "ISC",
"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"
},
"dependencies": {
"@algo-builder/algob": "^5.0.1",
"@algo-builder/web": "^5.0.1",
"algosdk": "^1.21.0",
"core-js": "^3.25.3",
"crypto-browserify": "^3.12.0",
"pinia": "^2.0.22",
"stream-browserify": "^3.0.0",
"vue": "^3.2.40"
},
"packageManager": "yarn@3.2.0",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.40",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.5.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}