-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "vite-ts-react-template",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "npx vite",
"dev": "npx vite",
"build": "npx vite build",
"lint": "npx eslint src --ext ts,tsx",
"lint:fix": "npx eslint src --ext ts,tsx --fix ",
"lint:css": "npx stylelint \"src/**/*.{css,pcss}\" --fix",
"format": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,pcss}\"",
"preview": "npx vite preview",
"test": "npx vitest --run"
},
"dependencies": {
"@tabler/icons-react": "^2.46.0",
"axios": "^1.6.6",
"dayjs": "^1.11.10",
"posthog-js": "^1.102.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^24.0.0",
"postcss": "^8.4.33",
"precss": "^4.0.0",
"prettier": "^3.2.4",
"stylelint": "^16.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"vite": "^5.0.12",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-stylelint": "^5.3.1",
"vitest": "^1.2.1"
}
}