-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.26 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
{
"name": "diceit",
"private": false,
"version": "0.1.0",
"repository": "https://github.com/pedraal/diceit",
"author": "pedraal",
"scripts": {
"dev": "vite --port 3333 --open",
"build": "cross-env NODE_ENV=production vite-ssg build",
"preview": "vite preview",
"preview-https": "serve dist",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"hardhat": "env-cmd --file .env npx hardhat",
"hardhat:node": "env-cmd --file .env npx hardhat node",
"hardhat:test": "yarn hardhat test test/*.js",
"hardhat:compile": "npx hardhat compile",
"hardhat:deploy": "npx hardhat run scripts/deploy.js",
"hardhat:deploy:local": "env-cmd --file .env yarn hardhat:deploy --network localhost",
"hardhat:deploy:ropsten": "env-cmd --file prod.env yarn hardhat:deploy --network ropsten"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@vueuse/core": "^6.5.3",
"@vueuse/head": "^0.6.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.4",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.9",
"prism-theme-vars": "^0.2.2",
"ts-node": "^10.3.1",
"vue": "^3.2.19",
"vue-demi": "^0.11.4",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@antfu/eslint-config": "^0.9.0",
"@iconify/json": "^1.1.408",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^1.9.2",
"@vue/compiler-sfc": "^3.2.19",
"@vue/server-renderer": "^3.2.19",
"critters": "^0.0.10",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"hardhat-gas-reporter": "^1.0.4",
"https-localhost": "^4.7.0",
"markdown-it-link-attributes": "^3.0.0",
"markdown-it-prism": "^2.2.1",
"pnpm": "^6.16.0",
"typescript": "^4.4.3",
"unplugin-auto-import": "^0.4.10",
"unplugin-icons": "^0.11.4",
"unplugin-vue-components": "^0.15.6",
"vite": "^2.6.1",
"vite-plugin-inspect": "^0.3.7",
"vite-plugin-md": "^0.11.1",
"vite-plugin-pages": "^0.18.1",
"vite-plugin-pwa": "^0.11.2",
"vite-plugin-vue-layouts": "^0.5.0",
"vite-plugin-windicss": "^1.4.8",
"vite-ssg": "^0.15.4"
}
}