package.json 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "tracim_app_thread",
  3. "version": "1.1.2",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "servdev": "NODE_ENV=development webpack-dev-server --watch --colors --inline --hot --progress",
  8. "servdevwindoz": "set NODE_ENV=development&& webpack-dev-server --watch --colors --inline --hot --progress",
  9. "servdev-dashboard": "NODE_ENV=development webpack-dashboard -m -p 9872 -- webpack-dev-server --watch --colors --inline --hot --progress",
  10. "build": "NODE_ENV=production webpack -p",
  11. "build-translation": "node i18next.scanner.js",
  12. "buildwindoz": "set NODE_ENV=production&& webpack -p",
  13. "test": "echo \"Error: no test specified\" && exit 1"
  14. },
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "babel-core": "^6.26.0",
  19. "babel-eslint": "^8.2.1",
  20. "babel-loader": "^7.1.2",
  21. "babel-plugin-transform-class-properties": "^6.24.1",
  22. "babel-plugin-transform-object-assign": "^6.22.0",
  23. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  24. "babel-polyfill": "^6.26.0",
  25. "babel-preset-env": "^1.6.1",
  26. "babel-preset-react": "^6.24.1",
  27. "classnames": "^2.2.5",
  28. "css-loader": "^0.28.7",
  29. "file-loader": "^1.1.5",
  30. "i18next": "^10.5.0",
  31. "prop-types": "^15.6.0",
  32. "react": "^16.0.0",
  33. "react-dom": "^16.0.0",
  34. "react-i18next": "^7.5.0",
  35. "standard": "^11.0.0",
  36. "standard-loader": "^6.0.1",
  37. "style-loader": "^0.19.0",
  38. "stylus": "^0.54.5",
  39. "stylus-loader": "^3.0.1",
  40. "url-loader": "^0.6.2",
  41. "webpack": "^3.8.1",
  42. "whatwg-fetch": "^2.0.3"
  43. },
  44. "devDependencies": {
  45. "i18next-scanner": "^2.6.1",
  46. "webpack-dashboard": "^1.1.1",
  47. "webpack-dev-server": "^2.9.2"
  48. },
  49. "standard": {
  50. "globals": [
  51. "fetch",
  52. "history",
  53. "btoa",
  54. "wysiwyg",
  55. "tinymce",
  56. "GLOBAL_renderAppFull",
  57. "GLOBAL_unmountApp",
  58. "GLOBAL_dispatchEvent"
  59. ],
  60. "parser": "babel-eslint",
  61. "ignore": []
  62. }
  63. }