-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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": "blockchain-project",
"version": "1.0.0",
"description": "(repo name to be changed as soon the name is found)",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"frontend": "vite",
"server": "node server/server.js",
"server-dev": "nodemon server/server.js",
"ganache": "ganache",
"test": "truffle test",
"compile": "truffle compile",
"deploy": "truffle migrate --network development",
"deploy-sepolia": "truffle migrate --network sepolia",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@openzeppelin/contracts": "^4.9.0",
"@truffle/hdwallet-provider": "^2.1.12",
"@vueuse/core": "^10.2.0",
"dotenv": "^16.1.4",
"ethereumjs-util": "^7.1.5",
"express": "^4.18.2",
"flat": "^5.0.2",
"ipfs-only-hash": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"moralis": "^2.22.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.11",
"pinia": "^2.0.36",
"redis": "^4.6.7",
"redis-om": "^0.3.6",
"rejson": "^0.1.0",
"truffle-assertions": "^0.9.2",
"vue": "^3.3.2",
"vue-router": "^4.2.0",
"vue-toastification": "^2.0.0-rc.5",
"web3": "^1.10.0",
"web3-token": "^1.0.6",
"web3-utils": "^1.10.0"
},
"devDependencies": {
"@iconify/vue": "^4.1.1",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^18.16.8",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "~5.0.4",
"vite": "^4.3.5",
"vue-tsc": "^1.6.4"
}
}