|
| 1 | +{ |
| 2 | + "name": "smee-server", |
| 3 | + "version": "0.0.3", |
| 4 | + "description": "", |
| 5 | + "author": "Jason Etcovitch <[email protected]> (https://github.com/JasonEtco)", |
| 6 | + "license": "ISC", |
| 7 | + "repository": "https://github.com/probot/smee.git", |
| 8 | + "scripts": { |
| 9 | + "start": "node ./index.js", |
| 10 | + "start-dev": "concurrently \"nodemon --ignore src/ ./index.js\" \"webpack -w\"", |
| 11 | + "build": "webpack -p", |
| 12 | + "test": "jest --coverage && eslint", |
| 13 | + "postinstall": "npm run build" |
| 14 | + }, |
| 15 | + "dependencies": { |
| 16 | + "autoprefixer": "^7.1.6", |
| 17 | + "babel-core": "^6.26.0", |
| 18 | + "babel-eslint": "^7.2.3", |
| 19 | + "babel-loader": "^7.1.2", |
| 20 | + "babel-plugin-transform-class-properties": "^6.24.1", |
| 21 | + "babel-plugin-transform-object-rest-spread": "^6.26.0", |
| 22 | + "babel-preset-env": "^1.6.1", |
| 23 | + "babel-preset-react": "^6.24.1", |
| 24 | + "connect-sse": "^1.2.0", |
| 25 | + "copy-to-clipboard": "^3.0.8", |
| 26 | + "copy-webpack-plugin": "^4.2.0", |
| 27 | + "crypto": "^1.0.1", |
| 28 | + "css-loader": "^0.28.7", |
| 29 | + "eventsource": "^1.0.5", |
| 30 | + "express": "^4.16.2", |
| 31 | + "express-sslify": "^1.2.0", |
| 32 | + "extract-text-webpack-plugin": "^3.0.1", |
| 33 | + "get-value": "^2.0.6", |
| 34 | + "glob-all": "^3.1.0", |
| 35 | + "helmet": "^3.9.0", |
| 36 | + "highlight.js": "^9.12.0", |
| 37 | + "html-webpack-plugin": "^2.30.1", |
| 38 | + "moment": "^2.19.1", |
| 39 | + "moment-timezone": "^0.5.14", |
| 40 | + "node-sass": "^4.5.3", |
| 41 | + "postcss-loader": "^2.0.8", |
| 42 | + "primer-css": "^9.6.0", |
| 43 | + "prop-types": "^15.6.0", |
| 44 | + "purify-css": "^1.2.5", |
| 45 | + "purifycss-webpack": "^0.7.0", |
| 46 | + "react": "^16.0.0", |
| 47 | + "react-dom": "^16.0.0", |
| 48 | + "react-json-view": "^1.13.2", |
| 49 | + "react-octicons": "^0.2.0", |
| 50 | + "sass-loader": "^6.0.6", |
| 51 | + "style-loader": "^0.19.0", |
| 52 | + "webpack": "^3.8.1" |
| 53 | + }, |
| 54 | + "devDependencies": { |
| 55 | + "babel-jest": "^21.2.0", |
| 56 | + "concurrently": "^3.5.0", |
| 57 | + "enzyme": "^3.2.0", |
| 58 | + "enzyme-adapter-react-16": "^1.1.0", |
| 59 | + "eslint-config-standard": "^10.2.1", |
| 60 | + "eslint-config-standard-react": "^5.0.0", |
| 61 | + "eslint-plugin-import": "^2.8.0", |
| 62 | + "eslint-plugin-node": "^5.2.1", |
| 63 | + "eslint-plugin-promise": "^3.6.0", |
| 64 | + "eslint-plugin-react": "^7.5.1", |
| 65 | + "eslint-plugin-standard": "^3.0.1", |
| 66 | + "jest": "^21.2.1", |
| 67 | + "nodemon": "^1.12.1", |
| 68 | + "raf": "^3.4.0", |
| 69 | + "react-test-renderer": "^16.2.0", |
| 70 | + "standard": "^10.0.3", |
| 71 | + "supertest": "^3.0.0" |
| 72 | + }, |
| 73 | + "engines": { |
| 74 | + "node": "8.9.1" |
| 75 | + }, |
| 76 | + "jest": { |
| 77 | + "setupFiles": [ |
| 78 | + "./tests/setup.js" |
| 79 | + ], |
| 80 | + "testPathIgnorePatterns": [ |
| 81 | + "/node_modules/" |
| 82 | + ] |
| 83 | + } |
| 84 | +} |
0 commit comments