forked from scorelab/EtherBeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.43 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
{
"name": "etherbeat",
"version": "0.1.0",
"description": "EtherBear - monitoring service for smart contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/tharidu/EtherBeat.git"
},
"author": "",
"license": "",
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"nodemon dist/server.js\"",
"test": "jest --forceExit",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"async": "^2.1.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.15.3",
"express-flash": "^0.0.2",
"express-graphql": "^0.6.12",
"express-session": "^1.15.6",
"express-validator": "^3.1.3",
"graphql": "^0.10.1",
"gremlin": "^2.5.1",
"lodash": "^4.17.4",
"lusca": "^1.4.1",
"morgan": "^1.7.0",
"passport": "0.3.2",
"passport-github2": "^0.1.11",
"passport-local": "^1.0.0",
"request": "^2.78.0",
"web3": "^0.19.0"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/bignumber.js": "^4.0.2",
"@types/body-parser": "^1.16.2",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/express-graphql": "0.0.33",
"@types/express-session": "0.0.32",
"@types/graphql": "^0.9.1",
"@types/jest": "^19.2.2",
"@types/jquery": "^2.0.41",
"@types/lodash": "^4.14.63",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/passport": "^0.4.5",
"@types/passport-github": "^1.1.3",
"@types/request": "0.0.42",
"@types/supertest": "^2.0.0",
"concurrently": "^3.4.0",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^19.0.8",
"tslint": "^5.0.0",
"typescript": "2.3.2"
}
}