2018-06-25 18:29:57 +02:00
|
|
|
{
|
2018-09-04 12:05:51 +02:00
|
|
|
"name": "Cycl'Assist",
|
|
|
|
"version": "0.2.0",
|
|
|
|
"description": "Track and share issues (work, interruption in routes, parked cars) in realtime on bike lanes!",
|
2018-06-26 11:04:23 +02:00
|
|
|
"author": "Phyks (Lucas Verney) <phyks@phyks.me>",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
|
|
|
|
"start": "npm run dev",
|
|
|
|
"lint": "eslint --ext .js,.vue src",
|
2018-09-11 14:54:12 +02:00
|
|
|
"build:dev": "rm -r dist/*; webpack-cli --bail --progress --config build/webpack.dev.conf.js",
|
2018-08-05 22:05:56 +02:00
|
|
|
"build": "rm -r dist/*; webpack-cli --bail --progress --config build/webpack.prod.conf.js",
|
2018-07-21 18:39:28 +02:00
|
|
|
"push-locales": "json2po -P -i src/i18n/en.json -t src/i18n/en.json -o po/cyclassist.pot && zanata push",
|
2018-07-27 15:24:36 +02:00
|
|
|
"pull-locales": "zanata pull && ./.po2json.sh",
|
|
|
|
"list-vuetify-components": "ack '<v-' src | sed -e 's/^src\\/.*:[[:space:]]*<//' | grep '^v-' | sed -e 's/\\(v-[^[:space:]>]*\\).*/\\1/' | sort | uniq"
|
2018-06-26 11:04:23 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-08-28 17:49:54 +02:00
|
|
|
"@babel/polyfill": "^7.0.0",
|
2018-08-03 16:53:15 +02:00
|
|
|
"file-saver": "^1.3.8",
|
2018-09-04 13:39:25 +02:00
|
|
|
"gps-to-gpx": "git://github.com/phyks/gps-to-gpx.git#2c9da24ca98ecd520ee75276714d4df337696475",
|
2018-06-26 11:04:23 +02:00
|
|
|
"material-icons": "^0.2.3",
|
|
|
|
"nosleep.js": "^0.7.0",
|
2018-08-14 15:33:23 +02:00
|
|
|
"ol": "^5.1.3",
|
2018-06-26 11:04:23 +02:00
|
|
|
"roboto-fontface": "^0.9.0",
|
2018-10-25 16:50:38 +02:00
|
|
|
"serviceworker-webpack-plugin": "^1.0.1",
|
2018-06-26 11:04:23 +02:00
|
|
|
"vue": "^2.5.2",
|
2018-08-05 22:05:56 +02:00
|
|
|
"vue-i18n": "^8.0.0",
|
2018-06-26 11:04:23 +02:00
|
|
|
"vue-router": "^3.0.1",
|
2018-08-28 17:49:54 +02:00
|
|
|
"vuetify": "^1.2.0",
|
2018-08-13 19:56:43 +02:00
|
|
|
"vuex": "^3.0.1",
|
|
|
|
"whatwg-fetch": "^2.0.4"
|
2018-06-26 11:04:23 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-08-28 17:49:54 +02:00
|
|
|
"@babel/core": "^7.0.0",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
|
|
"@babel/preset-env": "^7.0.0",
|
2018-07-11 16:53:29 +02:00
|
|
|
"app-manifest-webpack-plugin": "^1.1.3",
|
2018-08-28 17:49:54 +02:00
|
|
|
"babel-eslint": "^9.0.0",
|
|
|
|
"babel-loader": "^8.0.0",
|
2018-06-26 11:04:23 +02:00
|
|
|
"copy-webpack-plugin": "^4.0.1",
|
2018-08-05 15:47:28 +02:00
|
|
|
"css-loader": "^1.0.0",
|
2018-08-24 23:34:37 +02:00
|
|
|
"eslint": "^5.4.0",
|
2018-08-13 19:56:43 +02:00
|
|
|
"eslint-config-airbnb-base": "^13.1.0",
|
2018-08-05 15:47:28 +02:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
|
|
|
"eslint-import-resolver-webpack": "^0.10.1",
|
|
|
|
"eslint-loader": "^2.1.0",
|
|
|
|
"eslint-plugin-html": "^4.0.5",
|
2018-08-13 19:56:43 +02:00
|
|
|
"eslint-plugin-import": "^2.14.0",
|
2018-06-26 11:04:23 +02:00
|
|
|
"friendly-errors-webpack-plugin": "^1.6.1",
|
2018-08-05 15:47:28 +02:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2018-07-13 16:50:34 +02:00
|
|
|
"image-webpack-loader": "^4.3.1",
|
2018-08-24 23:34:37 +02:00
|
|
|
"mini-css-extract-plugin": "^0.4.2",
|
2018-08-05 15:47:28 +02:00
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.0",
|
2018-08-24 23:34:37 +02:00
|
|
|
"portfinder": "^1.0.17",
|
2018-08-09 23:46:01 +02:00
|
|
|
"postcss-loader": "^3.0.0",
|
2018-08-31 16:21:54 +02:00
|
|
|
"postcss-preset-env": "^5.3.0",
|
2018-07-27 14:40:42 +02:00
|
|
|
"stylus": "^0.54.5",
|
|
|
|
"stylus-loader": "^3.0.2",
|
2018-08-05 22:05:56 +02:00
|
|
|
"svg-url-loader": "^2.3.2",
|
2018-07-11 16:53:29 +02:00
|
|
|
"svg2png": "^4.1.1",
|
2018-08-24 23:34:37 +02:00
|
|
|
"uglifyjs-webpack-plugin": "^1.3.0",
|
|
|
|
"url-loader": "^1.1.1",
|
2018-08-28 17:49:54 +02:00
|
|
|
"vue-loader": "^15.4.1",
|
2018-08-24 23:34:37 +02:00
|
|
|
"vue-style-loader": "^4.1.2",
|
2018-06-26 11:04:23 +02:00
|
|
|
"vue-template-compiler": "^2.5.2",
|
2018-08-24 23:34:37 +02:00
|
|
|
"webpack": "^4.17.1",
|
2018-07-12 16:47:19 +02:00
|
|
|
"webpack-bundle-analyzer": "^2.13.1",
|
2018-08-05 22:05:56 +02:00
|
|
|
"webpack-cli": "^3.1.0",
|
2018-08-28 17:49:54 +02:00
|
|
|
"webpack-dev-server": "^3.1.6",
|
2018-06-26 11:04:23 +02:00
|
|
|
"webpack-merge": "^4.1.0"
|
|
|
|
},
|
|
|
|
"browserslist": [
|
2018-08-31 16:21:54 +02:00
|
|
|
"defaults"
|
2018-06-26 11:04:23 +02:00
|
|
|
]
|
2018-06-25 18:29:57 +02:00
|
|
|
}
|