-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "tasks-dapp-project",
"description": "Example project for Dapp",
"version": "0.0.1",
"author": "Yohan González Almaguer <[email protected]> (https://zahirinatzuke.com/)",
"license": "MIT",
"keywords": [
"dapp",
"solidty",
"ethereum",
"blockchain",
"truffle",
"smart contract"
],
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"lite:server": "lite-server",
"truffle:build": "truffle compile",
"truffle:migrate": "truffle migrate",
"truffle:migrate:reset": "truffle migrate --reset",
"truffle:test": "truffle test",
"truffle:develop": "truffle develop",
"tw:prod": "npx tailwindcss -i client/style.scss -o client/tw-style.css --minify",
"tw:dev": "npx tailwindcss -i client/style.scss -o client/tw-style.css --watch"
},
"dependencies": {
"@truffle/contract": "^4.5.19",
"daisyui": "^2.20.0",
"lite-server": "^2.6.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.4",
"tailwindcss": "^3.1.7",
"truffle": "^5.5.24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZahiriNatZuke/tasks-dapp-project.git"
},
"bugs": {
"url": "https://github.com/ZahiriNatZuke/tasks-dapp-project/issues"
},
"homepage": "https://github.com/ZahiriNatZuke/tasks-dapp-project#readme"
}