This repository has been archived by the owner on Feb 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.58 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "ethereum-graph-debugger",
"author": "Fernando Garcia",
"license": "GPL",
"version": "1.0.0",
"description": "Ethereum graph debugger",
"main": "dist/run-server.js",
"scripts": {
"build": "$(npm bin)/npm-run-all -s routes-gen tsc copy-index webpack:prod",
"clean": "$(npm bin)/npm-run-all -p clean:*",
"clean:dist": "$(npm bin)/rimraf dist",
"clean:cov": "$(npm bin)/rimraf coverage",
"start": "$(npm bin)/npm-run-all -s clean build start:simple",
"start:simple": "node ./dist/run-server.js",
"start:dev": "$(npm bin)/npm-run-all -s clean build -p watch:*",
"watch:node": "$(npm bin)/nodemon --inspect=0.0.0.0:9229 --watch './src/**/*.*' --delay 2.5 --exec npm run server-webpack -e ts",
"watch:ts": "tsc --watch",
"prettier": "prettier --write 'src/**/*.{ts,json}'",
"prettier:check": "prettier --list-different 'src/**/*.{ts,json}'",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"tsc": "$(npm bin)/tsc",
"copy-index": "copyfiles ./index.html ./dist/",
"routes-gen": "tsoa routes",
"server-webpack": "$(npm bin)/npm-run-all -s webpack:prod copy-index start:simple",
"webpack:prod": "webpack --mode production"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 0,
"branches": 0,
"functions": 0,
"lines": 0
}
},
"globals": {
"ts-jest": {
"skipBabel": true,
"enableTsDiagnostics": true
}
},
"clearMocks": true,
"collectCoverageFrom": [
"src/*/**/*.{ts,js}",
"!src/**/{routes,index}.{ts,js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"testEnvironment": "node"
},
"dependencies": {
"@types/express": "^4.16.0",
"async-polling": "^0.2.1",
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"brace": "^0.11.1",
"copyfiles": "^2.1.0",
"d3": "^5.7.0",
"d3-graphviz": "^2.6.0",
"ethereumjs-util": "^6.0.0",
"express": "^4.16.4",
"express-winston": "^1.4.2",
"inversify": "^4.13.0",
"inversify-binding-decorators": "^3.2.0",
"method-override": "^3.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^6.0.0",
"react-svg-inline": "^2.1.1",
"recursive-readdir": "^2.2.2",
"redux-thunk": "^2.3.0",
"reflect-metadata": "^0.1.12",
"solc": "^0.4.25",
"tsoa": "2.1.8",
"web3": "^1.0.0-beta.36",
"winston": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^23.3.1",
"@types/node": "^10.12.18",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"classnames": "^2.2.6",
"css-loader": "^1.0.1",
"jest": "^23.5.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"onchange": "^4.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"react-simple-storage": "^1.4.1",
"redux": "^4.0.1",
"rimraf": "^2.5.2",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.0",
"style-loader": "^0.23.1",
"ts-jest": "^22.4.6",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.1.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}