-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.88 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
91
92
93
{
"name": "minesweeper",
"version": "0.1.0",
"private": true,
"homepage": "https://rgbutov.github.io/minesweeper",
"dependencies": {
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"immer": "^9.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"redux-logger": "^3.0.6",
"styled-component": "^2.8.0",
"styled-components": "^5.3.3",
"typescript": "^4.5.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:ci": "CI=test react-scripts test",
"test:coverage": "react-scripts test --coverage --watchAll=false",
"test:snap": "react-scripts test --updateSnapshot --watchAll=false",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test:doh": "react-scripts test --detectOpenHandles",
"test:pr": "npm run lint && npm run test:ci",
"test-ui": "cypress open",
"test-ui:ci": "cypress run",
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"lint:fix": "eslint --fix --cache 'src/**/*.ts' 'src/**/*.tsx'",
"prettier": "prettier --check 'src/**/*.ts' 'src/**/*.tsx'",
"prettier:fix": "prettier --write 'src/**/*.ts' 'src/**/*.tsx'",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.11",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.23",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-eslint": "^10.1.0",
"cypress": "^9.5.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"prettier": "^2.5.1",
"glob-parent": ">=5.1.2",
"nth-check": ">=2.0.1",
"node-forge": ">=1.0.0",
"node-notifier": ">=8.0.1",
"ajv": ">=6.12.3",
"ansi-regex": ">=5.0.1"
}
}