-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.15 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.15 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
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
{
"name": "@cryptoscamdb/server",
"version": "0.3.0",
"description": "Keeping track of all current cryptocurrency scams in an open-source database",
"keywords": [
"crypto",
"cryptocurrency",
"ethereum",
"scam",
"scamming",
"ether",
"eth",
"tracking",
"track",
"db",
"database",
"phishing",
"info",
"fake",
"ico"
],
"homepage": "https://api.cryptoscamdb.org",
"license": "MIT",
"author": "Luit",
"main": "./src/app.ts",
"scripts": {
"start": "ts-node src/app.ts",
"start:dev": "cross-env NODE_ENV=development DEBUG=* nodemon --trace-sync-io",
"start:prod": "cross-env NODE_ENV=production DEBUG=-* ts-node src/app.ts",
"test": "mocha -r ts-node/register tests/**/*.ts",
"example:pr": "ts-node examples/pr --trace-warnings",
"example:ens": "ts-node examples/ens --trace-warnings",
"example:regex": "ts-node examples/regex --trace-warnings",
"clean": "rimraf cache.db node_modules data config.json",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different \"src/**/*.ts\"",
"tscheck": "tsc --noEmit --project tsconfig.json",
"tslint": "tslint --project .",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git://github.com/CryptoScamDB/api.cryptoscamdb.org.git"
},
"build": {
"appId": "org.cryptoscamdb.api",
"mac": {
"category": "public.app-category.utilities"
}
},
"dependencies": {
"@cryptoscamdb/graceful-dns": "1.1.0",
"@types/sqlite3": "^3.1.3",
"bottleneck": "2.13.1",
"compression": "1.7.3",
"cross-env": "5.2.0",
"dateformat": "3.0.3",
"debug": "4.1.0",
"download": "7.1.0",
"esdb-categorize": "0.0.5",
"eth-phishing-detect": "1.1.13",
"ethereum-ens": "0.7.4",
"express": "4.16.4",
"flat": "4.1.0",
"fs-extra": "7.0.1",
"github-api": "3.0.0",
"helmet": "3.15.0",
"js-yaml": "3.12.1",
"octonode": "0.9.5",
"private-ip": "1.0.5",
"request": "2.88.0",
"sqlite3": "^4.0.4",
"typescript": "3.1.6",
"uuid": "^3.3.2",
"web3": "1.0.0-beta.36",
"web3-utils": "^1.0.0-beta.55"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/debug": "0.0.31",
"@types/download": "6.2.3",
"@types/express": "4.16.0",
"@types/fs-extra": "5.0.4",
"@types/helmet": "0.0.42",
"@types/js-yaml": "3.11.2",
"@types/mocha": "5.2.5",
"@types/node": "10.12.12",
"@types/request": "2.48.1",
"chai": "4.2.0",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"mocha": "5.2.0",
"nodemon": "1.18.7",
"prettier": "1.15.2",
"rimraf": "2.6.2",
"ts-node": "^7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"git add"
]
},
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged",
"pre-push": "npm run tslint && npm run tscheck && npm run test"
}
}
}