package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "livelike-web-code-test",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "tsc",
  8. "build:watch": "tsc --watch",
  9. "server": "node server.js",
  10. "rollup-dev": "rollup --config ./rollup.dev.js --watch --watch.buildDelay 250",
  11. "rollup-up": "rollup --config ./rollup.config.js",
  12. "bundle": "concurrently --kill-others \"npm run build\" \"npm run rollup-build\"",
  13. "client": "concurrently --kill-others \"npm run build:watch\" \"npm run rollup-dev\"",
  14. "dev": "concurrently --kill-others \"npm run build:watch\" \"npm run server\" \"npm run rollup-dev\""
  15. },
  16. "keywords": [],
  17. "author": "",
  18. "license": "ISC",
  19. "dependencies": {
  20. "lit-element": "^2.4.0",
  21. "ws": "^7.4.5"
  22. },
  23. "devDependencies": {
  24. "@babel/core": "^7.13.15",
  25. "@babel/plugin-proposal-class-properties": "^7.13.0",
  26. "@babel/plugin-proposal-decorators": "^7.14.2",
  27. "@babel/preset-env": "^7.14.2",
  28. "babel-plugin-transform-builtin-classes": "^0.6.1",
  29. "concurrently": "^6.0.2",
  30. "json-server": "^0.16.3",
  31. "prettier": "^2.2.1",
  32. "rollup": "^2.45.2",
  33. "rollup-plugin-babel": "^4.4.0",
  34. "rollup-plugin-commonjs": "^10.1.0",
  35. "rollup-plugin-livereload": "^2.0.0",
  36. "rollup-plugin-node-resolve": "^5.2.0",
  37. "rollup-plugin-serve": "^1.1.0",
  38. "typescript": "^4.2.4",
  39. "uuid": "^8.3.2"
  40. }
  41. }