-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.21 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
{
"name": "my-contributions.github.io",
"version": "0.0.1",
"description": "Show off your open source contributions and check out others",
"homepage": "https://my-contributions.github.io",
"repository": "github:my-contributions/my-contributions.github.io",
"author": "Elisey Zanko <[email protected]>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"test": "jest",
"lint": "eslint src"
},
"dependencies": {
"github-colors": "^2.2.17",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^23.4.2",
"jest-junit": "^5.2.0",
"node-sass": "^4.9.2",
"octicons": "^8.0.0",
"primer-alerts": "^1.5.9",
"primer-avatars": "^1.5.6",
"primer-base": "^1.7.4",
"primer-blankslate": "^1.4.9",
"primer-buttons": "^2.6.0",
"primer-forms": "^2.1.4",
"primer-marketing": "^6.2.5",
"primer-marketing-support": "^1.5.3",
"primer-support": "^4.6.0",
"primer-utilities": "^4.12.0",
"react-svg-loader": "^2.1.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4",
"whatwg-fetch": "^2.0.4"
},
"babel": {
"presets": [
"env",
"react"
]
},
"jest": {
"testURL": "http://localhost",
"globals": {
"OAUTH_GATEWAY_URL": "https://exmaple.com/",
"OAUTH_CLIENT_ID": "1234"
},
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}