forked from Loydl/nc-bpm-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "files_bpm",
"version": "0.2.1",
"description": "BPMN editor for Nextcloud",
"main": "src/index.js",
"repository": "https://github.com/Loydl/nc-bpm-app",
"author": "Klaus Herberth <klaus@jsxc.org>",
"license": "agpl",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"test": "run-s --continue-on-error --print-label test:**",
"test:php:unit": "dotenv ./vendor/bin/phpunit -- -c phpunit.xml",
"test:php:integration": "dotenv ./vendor/bin/phpunit -- -c phpunit.integration.xml",
"fix": "run-p --continue-on-error --print-label lint:fix:*",
"lint": "run-p --continue-on-error --print-label lint:*",
"lint:script": "eslint --ext .tsx,.ts src",
"lint:fix:script": "eslint --ext .tsx,.ts src --fix",
"lint:style": "stylelint 'src/**/*.scss'",
"lint:fix:style": "stylelint 'src/**/*.scss' --fix",
"lint:php": "./vendor/bin/php-cs-fixer fix --dry-run",
"lint:fix:php": "./vendor/bin/php-cs-fixer fix",
"composer:install": "composer install --no-dev -o",
"composer:install:dev": "composer install -o",
"release:build": "node scripts/build-release.js",
"release:publish": "node scripts/publish-release.js"
},
"dependencies": {
"bpmn-js": "^8.2.0",
"bpmn-js-properties-panel": "^0.40.0",
"camunda-bpmn-moddle": "^5.0.0",
"camunda-dmn-moddle": "^1.1.0",
"dmn-js-properties-panel": "^0.6.0",
"jquery": "^3.5.1",
"jspdf": "^2.3.1",
"svg2pdf.js": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test:php:unit && ./vendor/bin/psalm --threads=4",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^9.1.2",
"@nextcloud/axios": "^1.3.2",
"@nextcloud/browserslist-config": "^1.0.0",
"@nextcloud/dialogs": "^3.1.1",
"@nextcloud/eslint-plugin": "^2.0.0",
"@nextcloud/files": "^1.0.1",
"@nextcloud/initial-state": "^1.2.0",
"@nextcloud/password-confirmation": "^1.0.1",
"@nextcloud/router": "^1.0.2",
"@octokit/rest": "^18.0.4",
"@types/inquirer": "^7.3.1",
"@types/jquery": "^3.3.35",
"@types/node": "^14.6.2",
"@types/webpack": "^4.41.12",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"archiver": "^5.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"colors": "^1.4.0",
"css-loader": "^4.2.2",
"dmn-js": "^10.1.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.1.0",
"eslint": "^7.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "^4.0.0",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"inquirer": "^7.1.0",
"libxmljs": "^0.19.7",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^10.0.1",
"simple-git": "^2.20.1",
"style-loader": "^1.2.0",
"stylelint": "^13.7.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.16.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"url-loader": "^4.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^5.1.3",
"webpack-node-externals": "^2.5.2"
}
}