Advertisement
Guest User

package.json

a guest
Nov 27th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.68 KB | None | 0 0
  1. {
  2.   "name": "react-dnd-sorted",
  3.   "version": "1.0.0",
  4.   "description": "Sorted List Component using react-dnd",
  5.   "author": "",
  6.   "license": "MIT",
  7.   "repository": "/react-dnd-sorted",
  8.   "main": "dist/index.js",
  9.   "module": "dist/index.modern.js",
  10.   "source": "src/index.js",
  11.   "engines": {
  12.     "node": ">=10"
  13.   },
  14.   "scripts": {
  15.     "build": "microbundle-crl --no-compress --format modern,cjs",
  16.     "start": "microbundle-crl watch --no-compress --format modern,cjs",
  17.     "prepare": "run-s build",
  18.     "test": "run-s test:unit test:lint test:build",
  19.     "test:build": "run-s build",
  20.     "test:lint": "eslint .",
  21.     "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
  22.     "test:watch": "react-scripts test --env=jsdom",
  23.     "predeploy": "cd example && npm install && npm run build",
  24.     "deploy": "gh-pages -d example/build"
  25.   },
  26.   "peerDependencies": {
  27.     "react": "^16.0.0",
  28.     "react-dnd": "^14.0.4",
  29.     "react-dnd-html5-backend": "^14.0.2"
  30.   },
  31.   "devDependencies": {
  32.     "babel-eslint": "^10.0.3",
  33.     "cross-env": "^7.0.2",
  34.     "eslint": "^6.8.0",
  35.     "eslint-config-prettier": "^6.7.0",
  36.     "eslint-config-standard": "^14.1.0",
  37.     "eslint-config-standard-react": "^9.2.0",
  38.     "eslint-plugin-import": "^2.18.2",
  39.     "eslint-plugin-node": "^11.0.0",
  40.     "eslint-plugin-prettier": "^3.1.1",
  41.     "eslint-plugin-promise": "^4.2.1",
  42.     "eslint-plugin-react": "^7.17.0",
  43.     "eslint-plugin-standard": "^4.0.1",
  44.     "gh-pages": "^2.2.0",
  45.     "microbundle-crl": "^0.13.10",
  46.     "npm-run-all": "^4.1.5",
  47.     "prettier": "^2.0.4",
  48.     "react": "^16.13.1",
  49.     "react-dom": "^16.13.1",
  50.     "react-scripts": "^3.4.1"
  51.   },
  52.   "files": [
  53.     "dist"
  54.   ]
  55. }
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement