-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "stein-saks-papir",
"version": "0.6.8",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"bootstrap": "^5.3.3",
"cypress": "^13.16.0",
"easy-peasy": "^6.0.5",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-bootstrap": "^2.10.6",
"react-dom": "18.3.1",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false --coverage",
"test:regular": "react-scripts test",
"cypress:open": "cypress open",
"test:cypress": "cypress run",
"dev": "start-test start 3000 cypress:open",
"stylelint": "stylelint **/*.css",
"lint": "eslint --fix .",
"format": "prettier --write \"**/*.{js,jsx,json}\"",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i && npm run format"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/index.jsx",
"!src/App.jsx"
]
},
"browserslist": {
"production": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"netlify-plugin-cypress": "^2.2.1",
"prettier": "^3.4.1",
"start-server-and-test": "^2.0.8",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1"
}
}