-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
{
"name": "cheshirecode-sample-refresh-token",
"private": true,
"version": "0.0.0",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": ">= 18"
},
"main": "./dist/lib.umd.cjs",
"module": "./dist/lib.js",
"exports": {
".": {
"import": "./dist/lib.js",
"require": "./dist/lib.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"typecheck": "tsc",
"build": "vite build",
"build:site": "SITE=1 vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"devDependencies": {
"@fieryeagle/eslint-config-react": "^0.3.0",
"@rushstack/eslint-patch": "^1.10.3",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/crypto-js": "^4.2.2",
"@types/isomorphic-fetch": "^0.0.39",
"@types/js-cookie": "^3.0.6",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.6.0",
"classnames": "^2.5.1",
"eslint-plugin-react-refresh": "^0.4.7",
"jsdom": "^24.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5",
"unocss": "^0.60.3",
"vite": "^5.2.0",
"vitest": "^1.6.0",
"vitest-fetch-mock": "^0.2.2",
"vitest-localstorage-mock": "^0.1.2",
"vitest-location-mock": "^1.0.4"
},
"resolutions": {
"eslint-plugin-unused-imports": "^3",
"@typescript-eslint/eslint-plugin": "^7"
},
"dependencies": {
"crypto-js": "^4.2.0",
"dayjs": "^1.11.11",
"isomorphic-unfetch": "^3",
"js-cookie": "^3.0.5"
}
}