electoral-college
Version:
A module to track and predict Electoral College results in U.S. Presidential Elections
105 lines (104 loc) • 3.23 kB
JSON
{
"name": "electoral-college",
"version": "4.0.0-alpha-1",
"license": "See LICENSE.md",
"description": "A module to track and predict Electoral College results in U.S. Presidential Elections",
"dependencies": {
"@types/node": "^17.0.17",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"sass": "^1.49.7",
"typescript": "^4.5.5"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "~7.24.7",
"@babel/preset-env": "~7.24.8",
"@babel/preset-react": "~7.24.7",
"@babel/preset-typescript": "~7.24.7",
"@chromatic-com/storybook": "^1.6.1",
"@rollup/plugin-commonjs": "~26.0.1",
"@rollup/plugin-node-resolve": "~15.2.3",
"@rollup/plugin-terser": "~0.4.4",
"@rollup/plugin-typescript": "~11.1.6",
"@storybook/addon-essentials": "^8.2.0",
"@storybook/addon-interactions": "^8.2.0",
"@storybook/addon-links": "^8.2.0",
"@storybook/addon-onboarding": "^8.2.0",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.4",
"@storybook/blocks": "^8.2.0",
"@storybook/react": "~8.2.4",
"@storybook/react-webpack5": "^8.2.0",
"@storybook/test": "^8.2.0",
"@testing-library/jest-dom": "^6.0.2",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "~29.7.0",
"css-loader": "^7.1.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^7.0.4",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"lint-staged": "^12.3.4",
"prettier": "^3.0.0",
"rollup": "~4.18.1",
"rollup-plugin-dts": "~6.1.1",
"rollup-plugin-peer-deps-external": "~2.2.4",
"rollup-plugin-styles": "~4.0.0",
"sass-loader": "~14.2.1",
"storybook": "^8.2.0",
"style-loader": "^4.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "./node_modules/.bin/eslint ./src --fix",
"prepare": "husky install",
"prettier:check": "npx prettier --check ./src",
"prettier:write": "npx prettier --write ./src",
"rollup": "rollup -c --bundleConfigAsCjs",
"storybook:build": "storybook build",
"storybook:run": "storybook dev -p 6006",
"test": "jest --collectCoverage",
"test:watch": "jest --watch --collectCoverage",
"typecheck": "tsc"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/"
],
"keywords": [
"react",
"electoral college",
"elections"
],
"author": "Brian Armstrong",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "https://github.com/brianparmstrong/electoral-college.git"
}
}