-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.25 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
{
"name": "@cryptoscamdb/web",
"version": "0.5.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://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": "tsc --noEmit --project tsconfig.json",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different 'src/**/*.ts'",
"tscheck": "tsc --noEmit --project tsconfig.json",
"tslint": "tslint --project .",
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git://github.com/CryptoScamDB/cryptoscamdb.org.git"
},
"build": {
"appId": "org.cryptoscamdb",
"mac": {
"category": "public.app-category.utilities"
}
},
"dependencies": {
"compression": "1.7.3",
"cross-env": "5.2.0",
"dateformat": "3.0.3",
"debug": "4.1.0",
"ejs": "2.6.1",
"eth-phishing-detect": "1.1.13",
"express": "4.16.4",
"helmet": "3.15.0",
"private-ip": "1.0.5",
"request": "2.88.0",
"request-promise-native": "1.0.5",
"ts-node": "7.0.1",
"typescript": "3.1.6"
},
"devDependencies": {
"@types/debug": "0.0.31",
"@types/express": "4.16.0",
"@types/helmet": "0.0.42",
"@types/node": "10.12.11",
"@types/request": "2.48.1",
"all-contributors-cli": "5.4.1",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"nodemon": "1.18.7",
"prettier": "1.15.3",
"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"
]
}
}