-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "rosetta",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "rimraf dist/ && babel src --out-dir dist --copy-files",
"start": "npm run build && node dist/index.js",
"start-offline": "npm run build && node dist/index.js --offline",
"dev-offline": "nodemon --offline",
"dev": "nodemon",
"test": "jest --coverage ",
"eslint": "eslint src"
},
"author": "",
"license": "MIT",
"jest": {
"reporters": [
"default",
[
"jest-html-reporters",
{
"publicPath": "./test-report",
"filename": "index.html",
"expand": true
}
]
]
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^26.6.0",
"jest-html-reporters": "^2.1.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"supertest": "^5.0.0"
},
"dependencies": {
"bn.js": "^4.11.9",
"@polkadot/api": "3.3.1",
"@polkadot/types": "3.3.1",
"@polkadot/types-known": "3.3.1",
"@polkadot/keyring": "^5.2.3",
"@polkadot/util": "^5.2.3",
"@polkadot/util-crypto": "^5.2.3",
"@substrate/txwrapper": "3.10.6",
"rosetta-node-sdk": "docknetwork/rosetta-node-sdk"
}
}