mirror of
https://github.com/react95-io/React95.git
synced 2026-01-14 08:57:58 -05:00
110 lines
3.1 KiB
JSON
110 lines
3.1 KiB
JSON
{
|
|
"name": "react95",
|
|
"version": "2.0.0",
|
|
"authors": [
|
|
"Artur Bień"
|
|
],
|
|
"description": "Refreshed Windows95 UI components for modern web apps - React95",
|
|
"keywords": [
|
|
"react",
|
|
"styled-components",
|
|
"windows95",
|
|
"component",
|
|
"vaporwave"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "git@github.com:arturbien/React95.git",
|
|
"homepage": "https://react95.io",
|
|
"main": "./dist/index.js",
|
|
"files": [
|
|
"/dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"storybook": "start-storybook -p 9009 -s public",
|
|
"build:storybook": "build-storybook -s public -o ./storybook",
|
|
"prepublishOnly": "npm run release",
|
|
"release": "npm run build:prod",
|
|
"build:dev": "cross-env NODE_ENV=development rollup -c",
|
|
"build:prod": "cross-env NODE_ENV=production rollup -c",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "eslint src --ext .js",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"docs:dev": "docz dev",
|
|
"docs:build": "docz build"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.2",
|
|
"react-dom": "^16.8.2",
|
|
"styled-components": "^4.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.6.2",
|
|
"@babel/core": "^7.6.2",
|
|
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
"@babel/preset-env": "^7.6.2",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@emotion/core": "^10.0.14",
|
|
"@emotion/styled": "^10.0.14",
|
|
"@storybook/addon-actions": "^5.3.9",
|
|
"@storybook/addon-info": "^5.3.9",
|
|
"@storybook/addon-links": "^5.3.9",
|
|
"@storybook/addon-options": "^5.3.9",
|
|
"@storybook/addon-storysource": "^5.3.9",
|
|
"@storybook/react": "^5.3.9",
|
|
"@testing-library/jest-dom": "^4.1.0",
|
|
"@testing-library/react": "^9.2.0",
|
|
"@types/jest": "^24.0.18",
|
|
"@types/react": "^16.8.23",
|
|
"@types/react-dom": "^16.8.4",
|
|
"@types/styled-components": "^5.0.1",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-styled-components": "^1.10.6",
|
|
"cross-env": "^6.0.3",
|
|
"docz": "latest",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-airbnb": "^17.1.1",
|
|
"eslint-config-prettier": "^6.0.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"eslint-plugin-react": "^7.15.1",
|
|
"gatsby-theme-docz": "^2.2.0",
|
|
"husky": "^3.0.8",
|
|
"jest": "^24.9.0",
|
|
"jest-styled-components": "^6.3.3",
|
|
"lint-staged": "^9.4.1",
|
|
"prettier": "^1.18.2",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.10.1",
|
|
"react-dom": "^16.10.1",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.9.0",
|
|
"rollup-plugin-babel": "^4.3.2",
|
|
"rollup-plugin-commonjs": "^9.3.0",
|
|
"rollup-plugin-node-resolve": "^4.0.1",
|
|
"rollup-plugin-replace": "^2.1.1",
|
|
"storybook-addon-styled-component-theme": "^1.3.0",
|
|
"styled-components": "^4.4.0"
|
|
},
|
|
"dependencies": {},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|