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-10-13 04:16:19 +03:00
|
|
|
"json2csv": "4.5.4",
|
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",
|
2020-02-02 05:15:53 +03:00
|
|
|
"nextcloud-vue": "^0.13.0",
|
2019-12-15 05:14:13 +03:00
|
|
|
"vue": "^2.6.11",
|
2019-09-03 04:18:07 +03:00
|
|
|
"vue-clipboard2": "^0.3.1",
|
2020-01-19 18:18:00 +03:00
|
|
|
"vue-router": "^3.1.5"
|
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": {
|
2020-02-02 05:13:47 +03:00
|
|
|
"@babel/core": "^7.8.4",
|
2020-01-19 18:29:15 +03:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2020-02-02 05:16:47 +03:00
|
|
|
"@babel/preset-env": "^7.8.4",
|
2019-05-14 02:15:45 +03:00
|
|
|
"babel-eslint": "^10.0.1",
|
|
|
|
"babel-loader": "^8.0.4",
|
2019-10-20 04:15:41 +03:00
|
|
|
"browserslist-config-nextcloud": "0.1.0",
|
2020-01-13 17:09:00 +03:00
|
|
|
"css-loader": "^3.4.2",
|
2019-12-22 13:10:54 +03:00
|
|
|
"eslint": "^6.8.0",
|
2019-11-17 05:13:59 +03:00
|
|
|
"eslint-config-standard": "^14.1.0",
|
2020-01-13 13:32:30 +03:00
|
|
|
"eslint-import-resolver-webpack": "^0.12.1",
|
2019-12-08 05:12:59 +03:00
|
|
|
"eslint-loader": "^3.0.3",
|
2020-01-12 05:15:59 +03:00
|
|
|
"eslint-plugin-import": "^2.20.0",
|
2019-09-03 12:58:51 +03:00
|
|
|
"eslint-plugin-nextcloud": "^0.3.0",
|
2019-12-29 05:14:37 +03:00
|
|
|
"eslint-plugin-node": "^11.0.0",
|
2019-09-03 12:58:51 +03:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-01-05 05:15:18 +03:00
|
|
|
"eslint-plugin-vue": "^6.1.2",
|
2019-12-30 13:18:23 +03:00
|
|
|
"file-loader": "^5.0.2",
|
2020-01-19 05:14:58 +03:00
|
|
|
"node-sass": "^4.13.1",
|
2020-01-19 18:21:32 +03:00
|
|
|
"sass-loader": "^8.0.2",
|
2019-09-03 12:58:51 +03:00
|
|
|
"stylelint": "^8.4.0",
|
|
|
|
"stylelint-config-recommended-scss": "^3.3.0",
|
2020-02-02 05:15:19 +03:00
|
|
|
"stylelint-scss": "^3.14.2",
|
2019-05-14 02:15:45 +03:00
|
|
|
"stylelint-webpack-plugin": "^0.10.5",
|
2019-12-22 05:18:20 +03:00
|
|
|
"vue-loader": "^15.8.3",
|
2019-05-14 02:15:45 +03:00
|
|
|
"vue-style-loader": "^4.1.1",
|
2019-12-15 05:14:13 +03:00
|
|
|
"vue-template-compiler": "^2.6.11",
|
2019-12-29 05:13:18 +03:00
|
|
|
"webpack": "^4.41.5",
|
2019-11-10 05:14:39 +03:00
|
|
|
"webpack-cli": "^3.3.10",
|
2019-09-03 12:58:51 +03:00
|
|
|
"webpack-merge": "^4.2.2"
|
2019-05-14 02:15:45 +03:00
|
|
|
}
|
|
|
|
}
|