-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vort_x",
"version": "1.0.0",
"description": "[VortΞx] is an Ethereum Dapp Redux Store that handles transactions, smart contracts, accounts, method calls ...",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"jest": {
"globalSetup": "./setup/setup.js",
"globalTeardown": "./setup/teardown.js",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"bn.js": "^4.11.8",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"sha1": "^1.1.1",
"truffle-contract-schema": "^2.0.0",
"typescript": "^2.7.2",
"web3-utils": "^1.0.0-beta.34"
},
"devDependencies": {
"ganache-core": "^2.1.0",
"jest": "^22.4.3",
"linted": "0.0.2",
"truffle": "^4.1.7",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.1.6",
"web3": "^1.0.0-beta.34",
"web3-typescript-typings": "^0.10.2"
},
"scripts": {
"build": "tslint --project . && tsc",
"test": "tslint --project . && jest --coverage --notify",
"doc": "rm -rf ./rtfd/reference && tslint --project . && tsc && typedoc --out ./rtfd/reference --mode file ./_sources/sources/ --name \"VortΞx\" --theme markdown --hideGenerator --target ES6 --exclude **/*.test.ts --readme 'none' --excludeExternals --excludePrivate"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/FlexProject/vortex"
},
"keywords": [
"ethereum",
"redux",
"smart",
"contract",
"transaction",
"web3",
"wallet",
"keypair",
"blockchain",
"react"
],
"readme": "NPM_README.md",
"author": "Iulian Rotaru",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/FlexProject/vortex/issues"
},
"homepage": "https://gitlab.com/FlexProject/vortex#README"
}