-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
119 lines (119 loc) · 3.49 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
{
"name": "@cryptoscamdb/frontend",
"description": "Keeping track of all current cryptocurrency scams in an open-source database",
"version": "0.2.0",
"author": "CryptoScamDB <[email protected]> (https://cryptoscamdb.org)",
"dependencies": {
"@babel/core": "7.4.0",
"axios": "0.18.0",
"body-parser": "^1.18.3",
"bottleneck": "2.17.1",
"gatsby": "2.2.8",
"gatsby-image": "2.0.34",
"gatsby-node-helpers": "0.3.0",
"gatsby-plugin-manifest": "2.0.24",
"gatsby-plugin-matomo": "0.6.0",
"gatsby-plugin-offline": "2.0.25",
"gatsby-plugin-react-helmet": "3.0.10",
"gatsby-plugin-recaptcha": "^1.0.5",
"gatsby-plugin-sass": "2.0.11",
"gatsby-plugin-sharp": "2.0.30",
"gatsby-plugin-styled-components": "3.1.2",
"gatsby-plugin-typescript": "2.0.11",
"gatsby-source-filesystem": "2.0.28",
"gatsby-transformer-sharp": "2.1.17",
"node-sass": "4.11.0",
"prop-types": "15.7.2",
"react": "16.8.5",
"react-dom": "16.8.5",
"react-helmet": "5.2.0",
"react-html-parser": "^2.0.2",
"react-recaptcha": "^2.3.10",
"source-map-support": "0.5.11",
"styled-components": "4.1.3",
"ts-node": "8.0.3"
},
"keywords": [
"crypto",
"cryptocurrency",
"ethereum",
"scam",
"scamming",
"ether",
"eth",
"tracking",
"track",
"db",
"database",
"phishing",
"info",
"fake",
"ico"
],
"license": "MIT",
"scripts": {
"tscheck": "tsc --noEmit --project tsconfig.json",
"tslint": "tslint --project .",
"build": "rimraf ./.cache && rimraf ./public && gatsby build",
"develop": "rimraf ./.cache && gatsby develop",
"develop-m": "rimraf ./.cache && gatsby develop -H 0.0.0.0 -p 8000",
"serve": "gatsby serve",
"start": "npm run develop",
"clean": "rimraf ./.cache && rimraf ./public",
"test": "jest --config ./jest/jest.config.js",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different 'src/**/*.ts' 'src/**/*.tsx' '*.js'"
},
"devDependencies": {
"@types/jest": "24.0.11",
"@types/node": "11.11.6",
"@types/react": "16.8.8",
"@types/react-helmet": "5.0.8",
"@types/react-test-renderer": "16.8.1",
"@types/styled-components": "4.1.12",
"babel-jest": "24.5.0",
"babel-preset-gatsby": "0.1.9",
"husky": "1.3.1",
"identity-obj-proxy": "3.0.0",
"jest": "24.5.0",
"jest-styled-components": "6.3.1",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"react-test-renderer": "16.8.5",
"rimraf": "2.6.3",
"ts-jest": "24.0.0",
"tslint": "5.14.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.1.0",
"tslint-react": "3.6.0",
"typescript": "3.3.4000"
},
"repository": {
"type": "git",
"url": "https://github.com/CryptoScamDB/frontend-gatsby"
},
"bugs": {
"url": "https://github.com/CryptoScamDB/frontend-gatsby/issues"
},
"contributors": [
"Harry Denley (https://harrydenley.com)",
"Luit Hollander <[email protected]> (https://luit.me)"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"tslint --project .",
"git add"
],
"*.js": [
"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"
}
}
}