-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.25 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "template-react-tailwind",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "yarn clean && tsc --build tsconfig.build.json && NODE_OPTIONS=--max-old-space-size=32768 vite build",
"clean": "rimraf dist",
"dev": "NODE_ENV=prod VITE_GITHUB_HASH=local vite",
"format": "prettier --write .",
"lint:fix": "eslint --fix .",
"lint:check": "eslint .",
"preview": "vite preview",
"test": "NODE_ENV=test jest --runInBand",
"test:updateSnapshot": "NODE_ENV=test jest --updateSnapshot",
"test:coverage": "NODE_ENV=test jest --coverage",
"prepare": "husky || true",
"pre-commit": "lint-staged",
"vis": "yarn vite-bundle-visualizer"
},
"dependencies": {
"@sentry/browser": "^7.101.1",
"@sentry/react": "^7.101.1",
"axios": "^1.6.7",
"axios-retry": "^4.0.0",
"eslint-plugin-tailwindcss": "^3.14.2",
"eventemitter3": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.1.2",
"winston": "^3.11.0",
"zustand": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@sentry/vite-plugin": "^0.7.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/eslint": "^8.4.10",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.188",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/rimraf": "^3.0.2",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.17",
"core-js": "^3.36.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-jsx-no-inline-style": "^0.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-location-mock": "^2.0.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"rimraf": "^5.0.5",
"style-dictionary": "^3.9.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-bundle-visualizer": "^1.0.1",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-svgr": "^4.2.0"
},
"lint-staged": {
"{lib,packages}/**/src/**/*.{ts,tsx}": [
"eslint --fix ."
],
"**/*.{ts,tsx,js,md,json}": [
"prettier --write ."
]
}
}