-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 858 Bytes
/
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
{
"name": "truffle-project-tpl",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "truffle compile --all",
"build": "rm -rf ./build/dist/ && sol-merger -c \"./contracts/**/*.sol\" ./build/dist/",
"migrate": "npm run compile && truffle migrate --network bsc_testnet --compile-none --reset",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dzarezenko/truffle-project-tpl.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dzarezenko/truffle-project-tpl/issues"
},
"homepage": "https://github.com/dzarezenko/truffle-project-tpl#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.7.3"
},
"devDependencies": {
"sol-merger": "^4.1.1"
}
}