| 1 |
{ |
| 2 |
"name": "project-detective", |
| 3 |
"version": "1.0.0", |
| 4 |
"description": "Vue.js project w/ WordPress API", |
| 5 |
"author": "N Squared", |
| 6 |
"private": true, |
| 7 |
"scripts": { |
| 8 |
"dev": "node build/dev-server.js", |
| 9 |
"start": "node build/dev-server.js", |
| 10 |
"build": "node build/build.js", |
| 11 |
"lint": "eslint --ext .js,.vue src" |
| 12 |
}, |
| 13 |
"dependencies": { |
| 14 |
"jquery": "^3.2.1", |
| 15 |
"node-sass": "4.7.2", |
| 16 |
"sass-loader": "^6.0.6", |
| 17 |
"vue": "^2.5.16", |
| 18 |
"vue-material": "1.0.0-beta-8", |
| 19 |
"vue-router": "^2.7.0", |
| 20 |
"vuex": "^3.0.1" |
| 21 |
}, |
| 22 |
"devDependencies": { |
| 23 |
"autoprefixer": "^7.1.2", |
| 24 |
"babel-core": "^6.26.3", |
| 25 |
"babel-eslint": "^7.1.1", |
| 26 |
"babel-loader": "^7.1.1", |
| 27 |
"babel-plugin-transform-runtime": "^6.22.0", |
| 28 |
"babel-preset-env": "^1.3.2", |
| 29 |
"babel-preset-stage-2": "^6.22.0", |
| 30 |
"babel-register": "^6.22.0", |
| 31 |
"chalk": "^2.4.1", |
| 32 |
"connect-history-api-fallback": "^1.3.0", |
| 33 |
"copy-webpack-plugin": "^4.5.1", |
| 34 |
"css-loader": "^0.28.11", |
| 35 |
"cssnano": "^3.10.0", |
| 36 |
"eslint": "^3.19.0", |
| 37 |
"eslint-config-standard": "^6.2.1", |
| 38 |
"eslint-friendly-formatter": "^3.0.0", |
| 39 |
"eslint-loader": "^1.7.1", |
| 40 |
"eslint-plugin-html": "^3.0.0", |
| 41 |
"eslint-plugin-promise": "^3.4.0", |
| 42 |
"eslint-plugin-standard": "^2.0.1", |
| 43 |
"eventsource-polyfill": "^0.9.6", |
| 44 |
"express": "^4.16.3", |
| 45 |
"extract-text-webpack-plugin": "^2.0.0", |
| 46 |
"file-loader": "^0.11.1", |
| 47 |
"friendly-errors-webpack-plugin": "^1.7.0", |
| 48 |
"html-webpack-plugin": "^2.28.0", |
| 49 |
"http-proxy-middleware": "^0.17.3", |
| 50 |
"opn": "^5.3.0", |
| 51 |
"optimize-css-assets-webpack-plugin": "^2.0.0", |
| 52 |
"ora": "^1.2.0", |
| 53 |
"rimraf": "^2.6.0", |
| 54 |
"semver": "^5.3.0", |
| 55 |
"shelljs": "^0.7.6", |
| 56 |
"url-loader": "^0.5.8", |
| 57 |
"vue-loader": "^13.0.4", |
| 58 |
"vue-style-loader": "^3.0.1", |
| 59 |
"vue-template-compiler": "^2.5.16", |
| 60 |
"webpack": "^2.6.1", |
| 61 |
"webpack-bundle-analyzer": "^2.2.1", |
| 62 |
"webpack-dev-middleware": "^1.10.0", |
| 63 |
"webpack-hot-middleware": "^2.22.1", |
| 64 |
"webpack-merge": "^4.1.0" |
| 65 |
}, |
| 66 |
"engines": { |
| 67 |
"node": ">= 4.0.0", |
| 68 |
"npm": ">= 3.0.0" |
| 69 |
}, |
| 70 |
"browserslist": [ |
| 71 |
"> 1%", |
| 72 |
"last 2 versions", |
| 73 |
"not ie <= 8" |
| 74 |
] |
| 75 |
} |
| 76 |
|