-
-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.99 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.99 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
{
"name": "wp-api-jwt-auth",
"version": "1.5.0",
"description": "WordPress plugin that provides JWT authentication for WP REST API",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"admin/ui/src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"admin/ui/src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:all-suites": "./scripts/run-tests.sh",
"test:php": "./scripts/run-tests.sh --php-only",
"test:api": "./scripts/run-tests.sh --api-only",
"test:frontend": "./scripts/run-tests.sh --frontend-only",
"check-all": "npm run type-check && npm run lint && npm run format:check",
"wp-env": "wp-env"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@usebruno/cli": "^2.9.1",
"@vitejs/plugin-react": "^5.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@wordpress/env": "^10.12.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"msw": "^2.2.1",
"postcss": "^8.4.31",
"prettier": "^3.6.2",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.4.0",
"typescript": "^5.2.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tmeister/wp-api-jwt-auth.git"
},
"author": "Enrique Chavez",
"license": "GPL-2.0-or-later",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@types/react-syntax-highlighter": "^15.5.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.541.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.6.3",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"overrides": {
"qs": "6.14.2",
"glob": "10.5.0"
}
}