survey-analytics
Version:
SurveyJS Dashboard is a UI component for visualizing and analyzing survey data. It interprets the form JSON schema to identify question types and renders collected responses using interactive charts and tables.
156 lines • 5.95 kB
JSON
{
"version": "2.4.0",
"name": "survey-analytics",
"scripts": {
"start": "webpack-dev-server --env buildType=dev",
"test": "jest",
"test:dev": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"e2e": "playwright test --project chromium --ui",
"e2e:ci": "playwright test --project chromium",
"release": "standard-version --message \"Release: %s [azurepipelines skip]\" ",
"doc:gen": "node doc_generator/lib_docgenerator.js src/index.ts",
"doc:update": "chmod +x ./docupdate_npm.sh && ./docupdate_npm.sh",
"watch:dev": "concurrently \"webpack --env buildType=dev --env emitStyles\" \"rollup -c -w\" ",
"build:all": "npm run build",
"build": "webpack --env buildType=dev --env emitNonSourceFiles --env emitStyles && webpack --env buildType=prod --env emitStyles && rollup -c && npm run build:types",
"build:types": "npm run build:types:core && npm run build:types:summary && npm run build:types:tabulator && npm run build:types:mongo",
"build:types:core": "tsc --p tsconfig.summary.core.json && echo \"export * from './survey-analytics.types/entries/summary.core';\" >> build/survey.analytics.core.d.ts",
"build:types:summary": "tsc --p tsconfig.summary.json && echo \"export * from './survey-analytics.types/entries/summary';\" >> build/survey.analytics.d.ts",
"build:types:tabulator": "tsc --p tsconfig.tabulator.json && echo \"export * from './survey-analytics-tabulator.types/entries/tabulator';\" >> build/survey.analytics.tabulator.d.ts",
"build:types:mongo": "tsc --p tsconfig.types.mongo.json && echo \"export * from './survey-analytics.types/entries/mongo';\" >> build/survey.analytics.mongo.d.ts",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --max-warnings=0",
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --max-warnings=0 --fix",
"pre-push-check": "npm run lint",
"pwinst": "playwright install chromium"
},
"main": "survey.analytics.js",
"files": [
"**/*"
],
"typings": "survey.analytics.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/surveyjs/survey-analytics.git"
},
"dependencies": {
"mongodb": "^6.20.0",
"muuri": "^0.8.0",
"plotly.js-dist-min": "^2.28.0",
"tabulator-tables": "^6.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@playwright/test": "1.53.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jest": "^26.0.24",
"@types/jquery": "3.3.29",
"@types/node": "7.0.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vue/eslint-config-typescript": "^11.0.0",
"concurrently": "^5.3.0",
"css-loader": "^7.1.2",
"lint-staged": "^15.4.3",
"eslint": "^8.57.0",
"eslint-plugin-surveyjs": "git+https://github.com/surveyjs/eslint-surveyjs.git",
"html-loader": "^5.0.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.9.0",
"mongodb-memory-server": "^10.2.1",
"node-uuid": "1.4.7",
"playwright": "1.53.1",
"puppeteer": "22.13.1",
"replace-in-file": "^6.3.2",
"rollup": "^4.34.8",
"rollup-plugin-license": "^3.6.0",
"sass": "^1.62.1",
"sass-loader": "^16.0.4",
"standard-version": "^9.5.0",
"style-loader": "^1.3.0",
"surveyjs-doc-generator": "git+https://github.com/surveyjs/surveyjs-doc-generator.git",
"svg-inline-loader": "^0.8.2",
"ts-jest": "^29.2.2",
"ts-loader": "^8.0.0",
"typescript": "^5.7.0",
"webpack": "5.98.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"@types/mongodb": "^4.0.6",
"@types/plotly.js-dist-min": "^2.3.0",
"@types/tabulator-tables": "^6.2.3",
"survey-core": "2.4.0"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
},
"lint-staged": {
"**/*.{js,cjs,mjs,ts,cts,mts}": [
"eslint --fix"
]
},
"exports": {
".": {
"types": "./survey.analytics.d.ts",
"import": "./fesm/survey.analytics.mjs",
"require": "./survey.analytics.js"
},
"./survey.analytics.core": {
"types": "./survey.analytics.core.d.ts",
"import": "./fesm/survey.analytics.core.mjs",
"require": "./survey.analytics.core.js"
},
"./survey.analytics.mongo": {
"types": "./survey.analytics.mongo.d.ts",
"import": "./fesm/survey.analytics.mongo.mjs",
"require": "./survey.analytics.mongo.js"
},
"./*.css": "./*.css",
"./survey.analytics.tabulator": {
"types": "./survey.analytics.tabulator.d.ts",
"import": "./fesm/survey.analytics.tabulator.mjs",
"require": "./survey.analytics.tabulator.js"
}
},
"module": "fesm/survey.analytics.mjs",
"homepage": "https://surveyjs.io/",
"author": "DevSoft Baltic OÜ <info@devsoftbaltic.com>",
"license": "SEE LICENSE IN LICENSE",
"licenseUrl": "https://surveyjs.io/licensing",
"description": "SurveyJS Dashboard is a UI component for visualizing and analyzing survey data. It interprets the form JSON schema to identify question types and renders collected responses using interactive charts and tables.",
"keywords": [
"survey",
"form",
"surveyjs",
"dashboard",
"analytics",
"data-visualization",
"charts",
"tables",
"survey-results",
"survey-data",
"survey-analysis",
"json",
"data-analysis",
"survey-library",
"reporting",
"data-management",
"visualize-survey"
]
}