-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 2.56 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
{
"name": "@huasofoundries/phppgadmin6",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:HuasoFoundries/phpPgAdmin6.git",
"author": "ffflabs <[email protected]>",
"license": "MIT",
"typings": "assets/types/globals.d.ts",
"scripts": {
"psalter": "vendor/bin/psalm --config=psalm.xml --alter --allow-backwards-incompatible-changes=false --dry-run",
"csfixer": "yarn phpcbf || vendor/bin/php-cs-fixer fix --config=.php_cs.php --diff --diff-format=udiff --verbose",
"phpcbf": "tools/phpcbf --standard=.phpcs.xml --parallel=2 --cache=.build/phpcs/php-cs.cache src/* ",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=2G --configuration phpstan.neon ",
"parallel-lint": "./vendor/bin/parallel-lint --exclude vendor --exclude .build --exclude _ide_helper* . ",
"phplint": "yarn parallel-lint && yarn psalm && yarn phpstan ",
"psalm:unused": "yarn psalter --issues=UnusedMethod,PossiblyUnusedMethod,UnusedProperty,PossiblyUnusedProperty,UnusedVariable ",
"psalm": "vendor/bin/psalm --config=psalm.xml ",
"psalm:static_analysis": "yarn psalm --show-info=false --long-progress --threads=4 ",
"rector": "vendor/bin/rector process --dry-run",
"watch:less": "less-watch-compiler --config .build/less-watch-compiler.config.json",
"watch:tail": "tail -f temp/debug.output.log | bunyan",
"watch": "concurrently -r -p \"[{name}]\" -k -n w: \"yarn:watch:*\"",
"build": "npm run compile_less && workbox injectManifest workbox-config.js ",
"compile_less": "lessc assets/themes/global.less assets/themes/global.css",
"eslint": "eslint --fix --ext js --ignore-path .eslintignore assets",
"prettier": "prettier -c --config .prettierrc assets/{js,themes}/*"
},
"devDependencies": {
"@types/codemirror": "^0.0.108",
"@types/datatables.net": "^1.10.19",
"@types/jquery": "^3.5.1",
"@types/jstree": "^3.3.40",
"@types/select2": "^4.0.53",
"@types/workbox-sw": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"concurrently": "^6.0.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jstree": "^3.3.11",
"less-watch-compiler": "^1.14.6",
"lessc": "^1.0.2",
"melody-idom": "^1.7.5",
"melody-runtime": "^1.7.5",
"prettier": "^2.1.1",
"prettier-plugin-twig-melody": "^0.4.6",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"workbox-cli": "^6.0.2"
},
"dependencies": {}
}