-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.84 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
{
"name": "react-data-validator",
"version": "0.0.0",
"author": {
"name": "Anton Panchenko",
"url": "https://github.com/nixegend"
},
"scripts": {
"build": "npm run typecheck && vite build",
"format": "prettier . --write --ignore-path .gitignore && git update-index --again",
"lint": "eslint . --ext .ts,.tsx --fix --ignore-path .gitignore",
"prepare": "husky install",
"serve": "npm run build && vite preview --port 3000",
"start": "vite",
"test:e2e": "start-server-and-test serve http://127.0.0.1:3000/ 'cypress open'",
"test:e2e:ci": "start-server-and-test serve http://127.0.0.1:3000/ 'cypress run'",
"test:unit": "jest --watch",
"test:unit:ci": "jest",
"test:unit:coverage": "jest --silent --watchAll=false --coverage",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{css,scss,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"dependencies": {
"dequal": "^2.0.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"react-transition-group": "^4.4.5",
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@cypress/vite-dev-server": "^3.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/testing-library__user-event": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-legacy": "^1.8.2",
"@vitejs/plugin-react": "^1.3.2",
"cypress": "^10.2.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.5.1",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^13.0.2",
"node-sass": "^8.0.0",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.7.1",
"sass": "^1.58.3",
"sort-package-json": "^1.57.0",
"start-server-and-test": "^1.14.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4",
"vite": "^2.9.12"
}
}