-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.66 KB
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
{
"name": "base-react-app",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"e2e:run": "start-server-and-test start http-get://localhost:3000 cypress:run",
"e2e:open": "start-server-and-test start http-get://localhost:3000 cypress:open",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint .",
"lint:css": "stylelint './src/**/*.styles.ts{,x}'",
"postinstall": "husky install && husky set .husky/pre-commit \"yarn lint-staged\""
},
"dependencies": {
"@tanstack/react-location": "3.7.4",
"@tanstack/react-query": "4.2.3",
"antd": "4.21.3",
"axios": "0.27.2",
"http-status-codes": "2.2.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"styled-components": "5.3.5",
"zustand": "4.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.2.1",
"@types/axios": "0.14.0",
"@types/eslint": "8.4.3",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"@vitejs/plugin-react": "1.3.0",
"@vitest/ui": "0.18.0",
"c8": "7.11.3",
"cypress": "10.3.0",
"eslint": "8.18.0",
"eslint-plugin-react": "7.30.1",
"husky": "8.0.1",
"jsdom": "20.0.0",
"lint-staged": "13.0.3",
"postcss-styled": "0.34.0",
"postcss-syntax": "0.36.2",
"prettier": "2.7.1",
"start-server-and-test": "1.14.0",
"stylelint": "14.11.0",
"stylelint-config-recommended": "9.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "4.7.4",
"vite": "2.9.9",
"vite-plugin-eslint": "1.6.1",
"vite-plugin-stylelint": "3.0.7",
"vite-plugin-svgr": "2.2.0",
"vitest": "0.18.0"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"endOfLine": "lf"
},
"lint-staged": {
"*": "prettier --write",
"*.styles.ts{,x}": "yarn lint:css",
"*.ts{,x}": "yarn lint"
}
}