forked from rpt-labs/ghostbuster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.38 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
{
"name": "github-crawler",
"version": "1.0.0",
"description": "alert to ghosts",
"main": "server/app",
"scripts": {
"dev": "nodemon --require dotenv/config server/app",
"build": "webpack --watch -d",
"lint": "eslint *.js client db scripts server",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpt-ginko/github-crawler.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpt-ginko/github-crawler/issues"
},
"homepage": "https://github.com/rpt-ginko/github-crawler#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"chart.js": "^2.9.4",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"express-graphql": "^0.7.1",
"googleapis": "^105.0.0",
"graphql": "^14.0.2",
"lodash": "^4.17.21",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"pg": "^7.6.0",
"prop-types": "^15.6.2",
"query-string": "^6.2.0",
"react": "^17.0.2",
"react-chartjs-2": "^2.10.0",
"react-dom": "^17.0.2",
"react-router-dom": "^4.3.1",
"semantic-ui-react": "^0.84.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-react-require": "^3.1.3",
"css-loader": "^1.0.0",
"eslint": "^4.19.1 || ^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "3.0.7",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.4.4",
"prettier": "^1.16.4",
"webpack": "^4.41.6",
"webpack-cli": "^3.1.2"
},
"jest": {
"collectCoverageFrom": [
"*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}