forms/package.json

124 lines
3 KiB
JSON
Raw Normal View History

2019-05-14 01:15:45 +02:00
{
"name": "forms",
"description": "Forms app for nextcloud",
"version": "1.0.3",
"authors": [
{
"name": "Vinzenz Rosenkranz",
"email": "vinzenz.rosenkranz@gmail.com",
"role": "Polls App Developer"
},
{
"name": "Rene Gieling",
"email": "github@dartcafe.de",
"role": "Polls App Developer"
},
{
"name": "Natalie Gilbert",
"role": "Forms Team Lead/Back End Developer"
},
{
"name": "Inigo Jiron",
"role": "Back End Developer/Database Specialist"
},
{
"name": "Affan Hussain",
"role": "Forms Technical Lead"
},
{
"name": "Nick Gallo",
"role": "Front End Developer"
},
{
"name": "Ajfar Huq",
"role": "Front End Developer"
},
{
"name": "Tim Sattizahn",
"role": "Forms QA Lead"
},
{
"name": "Stephan Link",
"role": "Quality Assurance"
},
{
"name": "Kameron Sheppard",
"role": "Quality Assurance"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/forms.git"
},
"bugs": {
"url": "https://github.com/nextcloud/forms/issues"
},
"homepage": "https://github.com/nextcloud/forms#readme",
"license": "AGPL-3.0",
"private": true,
"main": "src/js/main.js",
"scripts": {
"dev": "webpack --config webpack.dev.js",
"watch": "webpack --progress --watch --config src/webpack.dev.js",
"build": "webpack --progress --hide-modules --config src/webpack.prod.js",
2019-05-14 01:15:45 +02:00
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"json2csv": "4.5.2",
2019-05-14 01:15:45 +02:00
"moment": "^2.23.0",
"nextcloud-axios": "^0.2.1",
"nextcloud-vue": "^0.12.3",
2019-05-14 01:15:45 +02:00
"v-click-outside": "^2.0.2",
"v-tooltip": "^2.0.0-rc.33",
"vue": "^2.6.8",
"vue-click-outside": "^1.0.7",
"vue-clipboard2": "^0.3.1",
"vue-router": "^3.1.3"
2019-05-14 01:15:45 +02:00
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
2019-05-14 01:15:45 +02:00
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.0",
2019-05-14 01:15:45 +02:00
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^3.2.0",
2019-05-14 01:15:45 +02:00
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
2019-05-14 01:15:45 +02:00
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^10.0.0",
2019-05-14 01:15:45 +02:00
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
2019-05-14 01:15:45 +02:00
"node-sass": "^4.11.0",
"prettier-eslint": "^9.0.0",
"raw-loader": "^3.1.0",
2019-05-14 01:15:45 +02:00
"sass-loader": "^7.1.0",
"stylelint": "^10.1.0",
2019-05-14 01:15:45 +02:00
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.10.1",
2019-05-14 01:15:45 +02:00
"stylelint-webpack-plugin": "^0.10.5",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.6.8",
2019-05-14 09:03:59 +02:00
"webpack": "^4.31.0",
"webpack-cli": "^3.3.8",
2019-05-14 01:15:45 +02:00
"webpack-merge": "^4.1.5"
}
}