-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 2.61 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
{
"name": "fusdswap",
"version": "0.0.0",
"scripts": {
"dev": "cross-env vite",
"dev:mocked": "cross-env VITE_ENABLE_MOCKING=1 vite",
"build": "vite build",
"build:mocked": "cross-env VITE_ENABLE_MOCKING=1 vite build",
"preview": "vite preview --port 5050",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"test": "vitest run --environment jsdom",
"test:watch": "vitest --environment jsdom",
"test:updatesnapshots": "vitest -- -u",
"test:report": "vitest run --environment jsdom --reporter json --outputFile test_results.json",
"test:dir": "cross-env VITE_DIR_TESTS=1 vitest run --environment jsdom",
"test:dir:watch": "cross-env VITE_DIR_TESTS=1 vitest --environment jsdom",
"test:module": "cross-env VITE_MODULE_TESTS=1 vitest run --environment jsdom",
"test:module:watch": "cross-env VITE_MODULE_TESTS=1 vitest --environment jsdom",
"template": "plop",
"prepare": "husky install",
"install:web3-wallets": "cd src/plugins/web3-wallets && npm install",
"postinstall": "npm-run-all install:*"
},
"dependencies": {
"@apollo/client": "^3.6.1",
"@vue/apollo-composable": "^4.0.0-alpha.17",
"bignumber.js": "^9.0.2",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"ethers": "^5.6.9",
"fantom-vue3-components": "^0.37.7",
"graphql": "^16.4.0",
"graphql-tag": "^2.12.6",
"node-stdlib-browser": "^1.2.0",
"pinia": "^2.0.13",
"vue": "^3.2.33",
"vue-i18n": "^9.1.10"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@pinia/testing": "^0.0.12",
"@rollup/plugin-inject": "^5.0.2",
"@rushstack/eslint-patch": "^1.1.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"plop": "^3.1.0",
"prettier": "^2.5.1",
"sass": "^1.51.0",
"vite": "^5.0.2",
"vite-plugin-node-stdlib-browser": "^0.1.1",
"vite-plugin-pwa": "^0.17.2",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}