-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.26 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
{
"name": "soccerreact16",
"version": "0.1.0",
"private": true,
"homepage": "https://holgergp.github.io/soccerReact16",
"dependencies": {
"bootstrap": "^4.6.0",
"enzyme": "^3.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"husky": "^7.0.4",
"prettier": "^2.5.0",
"react-bootstrap": "^2.0.2",
"react-contenteditable": "^3.3.6",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-scripts": "4.0.3",
"yarn-run-all": "^3.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:record": "cypress run --record --key f9a14ac8-4663-47e2-b669-a1d1be9626b4",
"lint": "node_modules/.bin/eslint ./ --ext .js,.jsx",
"lint:fix": "./node_modules/.bin/prettier --single-quote --write \"+(src|cypress)/**/*.{js,jsx,json,css,scss,md}\"",
"prettier-check": "prettier --single-quote --check \"+(src|cypress)/**/*.{js,jsx,json,css,scss,md}\"",
"check": "run-s prettier-check lint test",
"postinstall": "husky install"
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"cypress": "9.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"lint-staged": "^12.1.2",
"gh-pages": "^3.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write"
]
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(react-dnd|dnd-core|react-dnd-html5-backend)/)"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
"\\.(gif|ttf|eot|svg)$": "identity-obj-proxy"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}