-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.24 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
{
"name": "tourn-grid-view",
"version": "0.1.0",
"private": true,
"description": "Chess tournaments interactive grid viewer app",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"format": "prettier-eslint '**/*.{js,ts,tsx}' --write",
"start": "webpack-dev-server --mode development --open --hot",
"build": "npm run clean && webpack --mode production",
"test": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageReporters=cobertura --coverageReporters=html",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atelechev/tourn-grid-view"
},
"keywords": [
"react",
"chess",
"tournament",
"grid"
],
"author": {
"name": "Anton Telechev",
"url": "https://github.com/atelechev"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.5.4",
"jest-junit": "^10.0.0",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.2.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.23",
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"d3-dsv": "^1.2.0",
"d3-selection": "^1.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rxjs": "^6.5.5"
},
"jest": {
"coverageReporters": [
"text"
],
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"output": "junit.xml",
"usePathForSuiteName": "true"
}
}