Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. {
  2. "name": "node",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "babel notification_integrity_checker/index.js -d dist",
  8. "start": "npm run build && node dist/index.js",
  9. "test": "echo "Error: no test specified" && exit 1"
  10. },
  11. "keywords": [],
  12. "author": "",
  13. "license": "ISC",
  14. "devDependencies": {
  15. "@babel/cli": "^7.4.4",
  16. "@babel/core": "^7.4.5",
  17. "@babel/preset-env": "^7.4.5"
  18. }
  19. }
  20.  
  21. {
  22. "presets": ["@babel/preset-env"]
  23. }
  24.  
  25. import { NOTIFICATIONS_TO_ROUTES } from '../../../app/src/app/data/notifications_routes';
  26.  
  27. console.log(NOTIFICATIONS_TO_ROUTES);
  28.  
  29. (function (exports, require, module, __filename, __dirname) { import { ROUTES_CUSTOMERS, ROUTES_EMPLOYEES, ROUTES_SUPPLIEES } from '@/app/data/route_constants';
  30. ^
  31.  
  32. SyntaxError: Unexpected token {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement