-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.3 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": "dough",
"version": "1.0.0",
"private": true,
"dependencies": {
"@testing-library/cypress": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.0",
"browserlist": "^1.0.1",
"browserslist-to-esbuild": "^1.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-testing-library": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"is-ci": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"vite": "^4.0.0",
"vite-plugin-pwa": "^0.16.0"
},
"devDependencies": {
"cypress": "^13.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"stylelint": "^15.0.0",
"stylelint-config-standard": "^34.0.0"
},
"scripts": {
"build": "tsc && vite build",
"cypress": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint src --fix && stylelint \"src/**/*.css\" --fix",
"prepare": "is-ci || husky install",
"pre-commit": "lint-staged",
"start": "vite",
"test": "jest --watch",
"test:coverage": "jest --coverage"
},
"stylelint": {
"extends": [
"stylelint-config-standard"
]
},
"browserslist": {
"production": [
"last 1 Chrome major versions",
"last 2 Firefox major versions",
"last 2 Safari major versions",
"last 2 Edge major versions",
"last 3 Android major versions",
"last 3 ChromeAndroid major versions",
"last 2 iOS major versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.{ts,tsx,js,jsx}": "eslint --fix",
"*.{ts,tsx,js,css,md,html}": "prettier --write"
}
}