-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (61 loc) · 1.73 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
{
"name": "react-calendar",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:reset": "rm -rf node_moduels/.vite && vite",
"build": "tsc && vite build",
"preview": "vite preview",
"reset": "rm -rf node_modules && pnpm i",
"lint:js": "eslint --ext \".js,.tsx,.ts\" --ignore-path .gitignore .",
"lintfix:js": "pnpm lint:js --fix",
"vitest:ui": "vitest --ui",
"test:unit": "vitest run",
"test:component": "cypress run --component",
"test:type": "tsc --noEmit",
"coverage": "vitest run --coverage",
"cy:open": "cypress open --global",
"prepare": "husky install"
},
"dependencies": {
"@unocss/reset": "^0.45.30",
"classnames": "^2.3.2",
"consola": "^2.15.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rgb-hex": "^4.0.0"
},
"devDependencies": {
"@iconify/react": "^4.0.0",
"@types/node": "^18.11.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.25.1",
"@vitest/ui": "^0.25.1",
"cypress": "^11.0.1",
"cypress-real-events": "^1.7.4",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"tsx": "^3.12.0",
"typescript": "^4.6.4",
"unocss": "^0.45.30",
"vite": "^3.1.0",
"vitest": "^0.25.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint"
]
}
}