package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "ivprog",
  3. "version": "4.4.0",
  4. "description": "IMA para o ensino de programação",
  5. "main": "js/main.js",
  6. "scripts": {
  7. "start": "http-server ./build",
  8. "build": "webpack --mode=development",
  9. "watch": "webpack --watch --mode=development",
  10. "compile": "webpack --mode=production && rm build/js/*.map && tar -zcvf ivprog.tar.gz build/",
  11. "test": "./node_modules/karma/bin/karma start"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://git.lcalion.com/ivprog.git"
  16. },
  17. "keywords": [
  18. "programação",
  19. "ensino",
  20. "visual"
  21. ],
  22. "author": "LInE-IME/USP",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://git.lcalion.com/ivprog/issues"
  26. },
  27. "homepage": "https://git.lcalion.com/ivprog#readme",
  28. "devDependencies": {
  29. "@babel/core": "^7.10.2",
  30. "@babel/plugin-transform-runtime": "^7.10.1",
  31. "@babel/preset-env": "^7.10.2",
  32. "@types/moo": "^0.5.5",
  33. "@typescript-eslint/eslint-plugin": "^5.7.0",
  34. "@typescript-eslint/parser": "^5.0.0",
  35. "babel-loader": "^8.0.6",
  36. "clean-webpack-plugin": "3.x",
  37. "copy-webpack-plugin": "10.x",
  38. "csv-parser": "^2.3.3",
  39. "eslint": "^8.5.0",
  40. "html-webpack-plugin": "^5.5.0",
  41. "http-server": "^14.0.0",
  42. "ts-loader": "^6.x",
  43. "typescript": "^3.9.5",
  44. "webpack": "^5.x",
  45. "webpack-cli": "5.x"
  46. },
  47. "dependencies": {
  48. "@babel/runtime": "^7.10.2",
  49. "codemirror": "^5.64.0",
  50. "decimal.js": "^10.2.0",
  51. "line-i18n": "git+http://200.144.254.107/git/LInE/line-i18n.git",
  52. "melanke-watchjs": "^1.5.0",
  53. "moo": "^0.5.1"
  54. }
  55. }