2019-05-14 02:15:45 +03: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": {
|
2019-09-03 12:58:51 +03:00
|
|
|
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
|
|
|
|
"dev": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
|
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
2019-05-14 02:15:45 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2019-09-03 12:58:51 +03:00
|
|
|
"stylelint": "stylelint src",
|
|
|
|
"stylelint:fix": "stylelint src --fix",
|
2019-05-14 02:15:45 +03:00
|
|
|
"test": "jest",
|
|
|
|
"test:coverage": "jest --coverage"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-09-10 05:09:53 +03:00
|
|
|
"json2csv": "4.5.3",
|
2019-05-14 02:15:45 +03:00
|
|
|
"moment": "^2.23.0",
|
2019-08-30 12:33:32 +03:00
|
|
|
"nextcloud-axios": "^0.2.1",
|
2019-09-05 04:17:09 +03:00
|
|
|
"nextcloud-vue": "^0.12.3",
|
2019-09-03 12:58:51 +03:00
|
|
|
"vue": "^2.6.10",
|
2019-09-03 04:18:07 +03:00
|
|
|
"vue-clipboard2": "^0.3.1",
|
2019-09-02 04:19:50 +03:00
|
|
|
"vue-router": "^3.1.3"
|
2019-05-14 02:15:45 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
2019-09-03 12:58:51 +03:00
|
|
|
"extends browserslist-config-nextcloud"
|
2019-05-14 02:15:45 +03:00
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-29 04:15:24 +03:00
|
|
|
"@babel/core": "^7.6.2",
|
2019-05-14 02:15:45 +03:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
2019-09-29 04:13:59 +03:00
|
|
|
"@babel/preset-env": "^7.6.2",
|
2019-05-14 02:15:45 +03:00
|
|
|
"babel-eslint": "^10.0.1",
|
|
|
|
"babel-loader": "^8.0.4",
|
2019-09-03 12:58:51 +03:00
|
|
|
"browserslist-config-nextcloud": "0.0.1",
|
2019-09-02 23:00:27 +03:00
|
|
|
"css-loader": "^3.2.0",
|
2019-09-03 12:58:51 +03:00
|
|
|
"eslint": "^5.16.0",
|
2019-05-14 02:15:45 +03:00
|
|
|
"eslint-config-standard": "^12.0.0",
|
2019-09-03 12:58:51 +03:00
|
|
|
"eslint-import-resolver-webpack": "^0.11.1",
|
2019-09-29 04:16:01 +03:00
|
|
|
"eslint-loader": "^3.0.2",
|
2019-09-03 12:58:51 +03:00
|
|
|
"eslint-plugin-import": "^2.18.2",
|
|
|
|
"eslint-plugin-nextcloud": "^0.3.0",
|
2019-09-13 12:02:57 +03:00
|
|
|
"eslint-plugin-node": "^10.0.0",
|
2019-09-03 12:58:51 +03:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
|
|
"eslint-plugin-vue": "^5.2.3",
|
2019-09-02 20:51:41 +03:00
|
|
|
"file-loader": "^4.2.0",
|
2019-09-03 12:58:51 +03:00
|
|
|
"node-sass": "^4.12.0",
|
|
|
|
"sass-loader": "^7.3.1",
|
|
|
|
"stylelint": "^8.4.0",
|
|
|
|
"stylelint-config-recommended-scss": "^3.3.0",
|
2019-09-22 04:12:49 +03:00
|
|
|
"stylelint-scss": "^3.11.1",
|
2019-05-14 02:15:45 +03:00
|
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
2019-09-03 12:58:51 +03:00
|
|
|
"vue-loader": "^15.7.1",
|
2019-05-14 02:15:45 +03:00
|
|
|
"vue-style-loader": "^4.1.1",
|
2019-09-03 12:58:51 +03:00
|
|
|
"vue-template-compiler": "^2.6.10",
|
2019-09-29 04:14:48 +03:00
|
|
|
"webpack": "^4.41.0",
|
2019-09-22 04:13:40 +03:00
|
|
|
"webpack-cli": "^3.3.9",
|
2019-09-03 12:58:51 +03:00
|
|
|
"webpack-merge": "^4.2.2"
|
2019-05-14 02:15:45 +03:00
|
|
|
}
|
|
|
|
}
|