-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.25 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
{
"name": "react-starter-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"release": {
"branches": [
"main",
"next"
]
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "vite serve",
"lint:scripts": "eslint --ext .ts,.tsx src",
"lint-fix:scripts": "eslint --fix --ext .ts,.tsx src",
"lint:styles": "stylelint \"src/**/*.css\"",
"lint-fix:styles": "stylelint \"src/**/*.css\" --fix",
"test": "jest",
"cypress:open": "cypress open",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@mantine/core": "^5.1.4",
"@mantine/hooks": "^5.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"-": "^0.0.1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/types": "^17.0.0",
"@jest/types": "^28.1.3",
"@testing-library/cypress": "^8.0.3",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.2",
"@types/node": "*",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-react": "^2.0.0",
"cypress": "^10.4.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"imagemin-lint-staged": "^0.5.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"stylelint": "^14.10.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^27.0.0",
"ts-jest": "28.0.0-next.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vite": "^3.0.0"
}
}