-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.3 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": "quick-dapp",
"description": "Work on your decentralized application, locally.",
"keywords": [
"dapp",
"web3",
"truffle",
"ganache"
],
"author": {
"name": "Matthieu SCARSET",
"email": "[email protected]",
"url": "https://poulet.eth"
},
"license": "MIT",
"private": true,
"version": "0.0.0",
"scripts": {
"======= MAIN =============================================": "",
"start": "yarn && concurrently \"yarn chain\" \"yarn migrate\" \"yarn dev\"",
"stop": "pkill node",
"======= FRONT =============================================": "",
"dev": "vite --open",
"preview": "vite preview",
"build": "vite build --emptyOutDir",
"======= BACK =============================================": "",
"compile": "truffle compile",
"migrate": "truffle migrate --reset > migrate.log",
"test": "truffle test",
"chain": "(cp -n .env.example .env) && node ganache.js"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@truffle/contract": "^4.4.9",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"dotenv": "^16.0.0",
"ganache": "^7.0.2",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.23",
"truffle": "^5.5.0",
"vite": "^2.8.0",
"web3": "^1.7.0"
},
"dependencies": {}
}