-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 4.14 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 4.14 KB
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
{
"name": "jezve-money",
"version": "1.90.7",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint-php": "npm-run-all lint-php-cs lint-php-phan",
"lint-php-cs": ".\\dev-tools\\vendor\\bin\\phpcs --standard=PSR12 --extensions=php --ignore=*/vendor/* ./src/",
"lint-php-phan": ".\\dev-tools\\vendor\\bin\\phan --color",
"all": "npm-run-all lint build test",
"test": "node ./tests/index.js",
"lint": "npm-run-all --parallel lint-src lint-style lint-php lint-tests",
"lint-src": "eslint --quiet ./src/admin/view/ ./src/view/",
"lint-tests": "eslint -c ./tests.eslintrc.json --quiet ./tests/ ./config/ ./scripts/",
"lint-style": "npx stylelint src/view/**/*.scss src/admin/view/**/*.scss --cache --cache-location ./node_modules/.cache/stylelint/ --rd",
"deploy": "node ./scripts/deploy.js",
"build": "npx webpack --progress -c ./config/webpack.config.js -c ./config/webpack.prod.js -m",
"build-dev": "npx webpack --progress -c ./config/webpack.config.js -c ./config/webpack.dev.js -m",
"start": "npx webpack --watch --progress -c ./config/webpack.config.js -c ./config/webpack.dev.js -m",
"install-backend": "node ./scripts/install-backend.js",
"update": "npm update --save",
"postinstall": "npm-run-all build install-composer",
"install-composer": "node ./scripts/composer.js install",
"update-composer": "node ./scripts/composer.js update",
"dump-autoload": "node ./scripts/composer.js",
"postbuild": "npm-run-all install-backend",
"postbuild-dev": "npm-run-all install-backend",
"build-tests": "npx webpack --progress -c ./config/webpack.tests.js",
"build-all": "npm-run-all build build-tests",
"commit-version": "node ./scripts/commit-version.js",
"release": "node ./scripts/release.js",
"postversion": "node ./scripts/version.js"
},
"keywords": [
"money",
"homebanking"
],
"author": "Henry Feesler",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/eslint-parser": "^7.27.1",
"@babel/plugin-syntax-import-assertions": "^7.27.1",
"@babel/plugin-transform-regenerator": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@jezvejs/assert": "^1.1.0",
"@jezvejs/release-tools": "^0.5.1",
"astroturf": "^1.2.0",
"autoprefixer": "^10.4.21",
"babel-loader": "^8.4.1",
"browserslist": "^4.24.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.4.1",
"dotenv": "^16.5.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-import": "^2.31.0",
"image-minimizer-webpack-plugin": "^3.8.3",
"imagemin": "^8.0.1",
"imagemin-svgo": "^10.0.1",
"jezve-test": "^2.3.2",
"jezvejs-test": "^1.14.10",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1",
"postcss-loader": "^6.2.1",
"progress": "^2.0.3",
"sass": "^1.89.0",
"sass-loader": "^13.3.3",
"shelljs": "^0.8.5",
"style-loader": "^2.0.0",
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"svgo": "^3.3.2",
"webpack": "^5.99.9",
"webpack-cli": "^4.10.0",
"webpack-manifest-plugin": "^5.0.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/runtime": "^7.27.1",
"@jezvejs/color": "^1.1.0",
"@jezvejs/datetime": "^1.2.2",
"@jezvejs/dom": "^1.2.2",
"@jezvejs/number": "^1.1.0",
"@jezvejs/types": "^1.1.0",
"core-js": "^3.42.0",
"jezvejs": "^2.29.3",
"whatwg-fetch": "^3.6.20"
}
}