package.json 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "buildwindoz": "set NODE_ENV=production&& webpack -p",
  12. "test": "echo \"Error: no test specified\" && exit 1"
  13. },
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "babel-core": "^6.26.0",
  18. "babel-eslint": "^8.2.1",
  19. "babel-loader": "^7.1.2",
  20. "babel-plugin-transform-class-properties": "^6.24.1",
  21. "babel-plugin-transform-object-assign": "^6.22.0",
  22. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  23. "babel-polyfill": "^6.26.0",
  24. "babel-preset-env": "^1.6.1",
  25. "babel-preset-react": "^6.24.1",
  26. "classnames": "^2.2.5",
  27. "css-loader": "^0.28.7",
  28. "file-loader": "^1.1.5",
  29. "i18next": "^10.5.0",
  30. "prop-types": "^15.6.0",
  31. "react": "^16.0.0",
  32. "react-dom": "^16.0.0",
  33. "react-i18next": "^7.5.0",
  34. "standard": "^11.0.0",
  35. "standard-loader": "^6.0.1",
  36. "style-loader": "^0.19.0",
  37. "stylus": "^0.54.5",
  38. "stylus-loader": "^3.0.1",
  39. "url-loader": "^0.6.2",
  40. "webpack": "^3.8.1",
  41. "whatwg-fetch": "^2.0.3"
  42. },
  43. "devDependencies": {
  44. "webpack-dashboard": "^1.1.1",
  45. "webpack-dev-server": "^2.9.2"
  46. },
  47. "standard": {
  48. "globals": [
  49. "fetch",
  50. "history",
  51. "btoa",
  52. "wysiwyg",
  53. "tinymce",
  54. "GLOBAL_renderAppFull",
  55. "GLOBAL_unmountApp",
  56. "GLOBAL_dispatchEvent"
  57. ],
  58. "parser": "babel-eslint",
  59. "ignore": []
  60. }
  61. }