This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 1.94 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
{
"name": "fields-of-arle",
"version": "0.3.1",
"homepage": "https://arle.philihp.com/",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "12.8.3",
"classnames": "2.3.1",
"deneg-zero": "4.0.0",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-scripts": "3.4.4",
"redux": "4.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:lint": "eslint --format junit -o test-reports/eslint/results.xml src/**/*.js",
"test:ci": "react-scripts test --ci --coverage --reporters=default --reporters=jest-junit",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js",
"predeploy": "npm run build"
},
"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"
]
},
"devDependencies": {
"boardgame.io": "0.44.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-react": "7.22.0",
"husky": "5.1.2",
"jest-junit": "12.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"sinon": "10.0.0",
"stylelint": "13.12.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"eslint --fix"
],
"src/**/*.css": [
"prettier --write",
"stylelint"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
]
},
"license": "MIT",
"repository": "https://github.com/philihp/fields-of-arle"
}