64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"name": "jmespath-playground",
|
|
"version": "1.3.1",
|
|
"description": "A React-based web application for testing JMESPath expressions against JSON data",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "vite",
|
|
"prebuild": "node scripts/version-check.js",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest",
|
|
"server": "node server.js --dev",
|
|
"dev": "concurrently \"npm start\" \"npm run server\"",
|
|
"build-image": "node scripts/build-image.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@mui/icons-material": "^7.3.7",
|
|
"@mui/material": "^7.3.7",
|
|
"@testing-library/jest-dom": "^6.1.4",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"express": "^4.19.2",
|
|
"jmespath": "^0.16.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"jmespath",
|
|
"json",
|
|
"query",
|
|
"testing",
|
|
"react"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "^5.1.2",
|
|
"@vitest/ui": "^4.0.18",
|
|
"concurrently": "^8.2.2",
|
|
"jsdom": "^27.4.0",
|
|
"supertest": "^7.2.2",
|
|
"vite": "^7.3.1",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|