Last active
August 24, 2017 23:36
-
-
Save rae-ralston/55e6753a6b278e22b3f0a77e066707a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 info it worked if it ends with ok | |
| 1 verbose cli [ '/Users/rachelralston/.nvm/versions/node/v6.11.2/bin/node', | |
| 1 verbose cli '/Users/rachelralston/.nvm/versions/node/v6.11.2/bin/npm', | |
| 1 verbose cli 'i' ] | |
| 2 info using npm@3.10.10 | |
| 3 info using node@v6.11.2 | |
| 4 silly loadCurrentTree Starting | |
| 5 silly install loadCurrentTree | |
| 6 silly install readLocalPackageData | |
| 7 silly rollbackFailedOptional Starting | |
| 8 silly rollbackFailedOptional Finishing | |
| 9 silly runTopLevelLifecycles Finishing | |
| 10 silly install printInstalled | |
| 11 verbose stack SyntaxError: Unexpected token < in JSON at position 58616 | |
| 11 verbose stack at Object.parse (native) | |
| 11 verbose stack at module.exports (/Users/rachelralston/.nvm/versions/node/v6.11.2/lib/node_modules/npm/lib/utils/parse-json.js:3:15) | |
| 11 verbose stack at /Users/rachelralston/.nvm/versions/node/v6.11.2/lib/node_modules/npm/lib/install.js:616:47 | |
| 11 verbose stack at /Users/rachelralston/.nvm/versions/node/v6.11.2/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:78:16 | |
| 11 verbose stack at FSReqWrap.readFileAfterClose [as oncomplete] (fs.js:446:3) | |
| 12 verbose cwd /Users/rachelralston/Desktop/coding/accelAI/frontend | |
| 13 error Darwin 16.7.0 | |
| 14 error argv "/Users/rachelralston/.nvm/versions/node/v6.11.2/bin/node" "/Users/rachelralston/.nvm/versions/node/v6.11.2/bin/npm" "i" | |
| 15 error node v6.11.2 | |
| 16 error npm v3.10.10 | |
| 17 error Unexpected token < in JSON at position 58616 | |
| 18 error If you need help, you may report this error at: | |
| 18 error <https://github.com/npm/npm/issues> | |
| 19 verbose exit [ 1, true ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "ariel-frontend", | |
| "version": "0.0.1", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "build": "NODE_ENV=production npm run symlinks && ./node_modules/.bin/webpack --progress --hide-modules", | |
| "build:watch": "NODE_ENV=development npm run symlinks && ./node_modules/.bin/webpack --progress --hide-modules -w", | |
| "clear:modules": "rm -rf node_modules npm-shrinkwrap.json", | |
| "docker:bash": "docker run -it teamaccelai/ariel-lms-frontend bash", | |
| "docker:build": "docker build -t teamaccelai/ariel-lms-frontend .", | |
| "docker:logs": "docker logs lms_web_1 -tf", | |
| "docker:clear:dangling": "docker rmi $(docker images -f 'dangling=true' -q)", | |
| "docker:construct": "./src/scripts/construct_image.sh", | |
| "docker:history": "docker history teamaccelai/ariel-lms-frontend", | |
| "postinstall": "npm shrinkwrap", | |
| "test": "npm run test:client && npm run test:server", | |
| "test:client": "npm run symlinks && ./node_modules/.bin/jest", | |
| "test:coverage": "npm run symlinks && jest --coverage", | |
| "test:server": "npm run symlinks && ./node_modules/.bin/mocha --recursive src/server/ || exit", | |
| "start:webpack:dev": "npm run symlinks && ./node_modules/.bin/webpack-dev-server", | |
| "start:dev": "DEBUG=ariel:client node_modules/.bin/nodemon --exec npm run start", | |
| "start": "npm run symlinks && ./src/scripts/start_server", | |
| "symlinks": "./node_modules/.bin/babel-node ./src/scripts/createSymlinks.js" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "git+https://github.com/AccelAI/LMS-Ariel-frontend.git" | |
| }, | |
| "keywords": [ | |
| "react", | |
| "redux" | |
| ], | |
| "author": "accel.ai", | |
| "contributors": [ | |
| "Rachel Ralston <rachel@rachelralston.com> (http://www.github.com/rachel-ftw)", | |
| "Devon Wesley <devon@devla.bs> (http://www.github.com/Jusdev98)", | |
| "Bethany Garcia <bethanymagarcia@gmail.com> (http://www.github.com/BethanyG)" | |
| ], | |
| "license": "ISC", | |
| "bugs": { | |
| "url": "https://github.com/AccelAI/LMS-Ariel-frontend/issues" | |
| }, | |
| "jest": { | |
| "transform": { | |
| ".*/": "<rootDir>/node_modules/babel-jest" | |
| }, | |
| "unmockedModulePathPatterns": [ | |
| "react", | |
| "react-dom", | |
| "react-addons-test-utils", | |
| "enzyme", | |
| "object.assign", | |
| "define-properties", | |
| "function-bind", | |
| "object-keys" | |
| ], | |
| "moduleFileExtensions": [ | |
| "js", | |
| "jsx" | |
| ], | |
| "moduleDirectories": [ | |
| "node_modules" | |
| ], | |
| "collectCoverageFrom": [ | |
| "!<rootDir>/src/server/test/*.test.js", | |
| "!<rootDir>/node_modules/" | |
| ], | |
| "moduleNameMapper": { | |
| "^react(.*)$": "<rootDir>/vendor/react-master$1", | |
| "^config$": "<rootDir>/configs/app-config.js", | |
| "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js", | |
| "\\.(css|less)$": "identity-obj-proxy" | |
| } | |
| }, | |
| "homepage": "https://github.com/AccelAI/LMS-Ariel-frontend#readme", | |
| "devDependencies": { | |
| "babel-core": "~6.25.0", | |
| "babel-jest": "~20.0.3", | |
| "babel-loader": "~7.1.1", | |
| "babel-preset-airbnb": "~2.4.0", | |
| "babel-preset-es2015": "~6.24.1", | |
| "babel-preset-react": "~6.24.1", | |
| "chai": "~4.1.0", | |
| "chai-http": "~3.0.0", | |
| "debug": "~2.6.8", | |
| "enzyme": "~2.9.1", | |
| "file-loader": "~0.11.2", | |
| "html-webpack-plugin": "~2.29.0", | |
| "identity-obj-proxy": "~3.0.0", | |
| "jest": "~20.0.4", | |
| "jest-cli": "~20.0.4", | |
| "mocha": "~3.4.2", | |
| "nodemon": "~1.11.0", | |
| "path": "~0.12.7", | |
| "react-addons-test-utils": "~15.6.0", | |
| "regenerator-runtime": "~0.10.5", | |
| "style-loader": "~0.18.2", | |
| "url-loader": "~0.5.9", | |
| "webpack": "~3.0.0", | |
| "webpack-dev-server": "~2.5.0" | |
| }, | |
| "dependencies": { | |
| "babel-cli": "~6.24.1", | |
| "express": "~4.15.3", | |
| "muicss": "^0.9.20", | |
| "radium": "^0.19.4", | |
| "react": "~15.6.1", | |
| "react-apollo": "~1.4.11", | |
| "react-dom": "~15.6.1", | |
| "react-router-dom": "^4.1.2", | |
| "rimraf": "~2.6.1" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment