-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 959 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 959 Bytes
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
{
"name": "@polymathnetwork/polymath-scripts",
"version": "0.0.0",
"private": true,
"scripts": {
"local-blockchain:seed": "node ./src/populateLocalBlockchain",
"local-blockchain:prepare": "rm -rf ./build && mkdir build && cp -r ./src/fixtures ./build/fixtures",
"local-blockchain:start": "node ./src/startLocalBlockchain",
"local-blockchain:generate-fixtures": "node ./src/generateLocalBlockchain",
"build:contract-docs": "node ./src/generateContractDocs",
"test": "echo \"No tests yet. Change the 'test' command to 'jest' if you want to enable tests in this package\""
},
"devDependencies": {
"babel-plugin-inline-json-import": "^0.3.1",
"polymath-core": "PolymathNetwork/polymath-core#5c79d984c6b8fd5b4fd71b4032dd9bc86cfa4b6d"
},
"dependencies": {
"ethereumjs-tx": "^1.3.7",
"fs-extra": "^7.0.0",
"ganache-cli": "6.2.5",
"lodash": "4.17.14",
"truffle": "4.1.14",
"web3": "4.0.1"
}
}