-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
64 lines (64 loc) · 2.19 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
{
"name": "vite-react-tailwind-bionic-reading",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"stylelint": "npx stylelint \"./**/*.{css,ts,tsx}\" --config \"./stylelint.config.js\"",
"stylelint:fix": "npm run stylelint -- --fix",
"prettier:fix": "prettier --config ./prettier.config.js --write ./src/**/*.{css,ts,tsx} ",
"prettier:check": "prettier --config ./prettier.config.js --check ./src/**/*.{css,ts,tsx}",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --quiet --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:ui": "vitest --ui"
},
"dependencies": {
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tailwindcss/forms": "^0.5.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-react": "1.3.2",
"autoprefixer": "^10.4.7",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vitest-globals": "^1.3.1",
"jsdom": "^23.0.1",
"postcss": "^8.4.23",
"postcss-extend": "^1.0.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^8.3.2",
"postcss-reporter": "^7.0.5",
"prettier": "^2.8.8",
"stylelint": "^15.6.0",
"stylelint-config-css-modules": "^4.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-standard": "^33.0.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vitest": "^1.1.0"
}
}