engelsystem/package.json

52 lines
1.7 KiB
JSON
Raw Normal View History

2018-01-03 01:19:31 +01:00
{
"name": "engelsystem",
"version": "1.1.0",
2018-01-03 01:19:31 +01:00
"main": "index.js",
"repository": "https://github.com/engelsystem/engelsystem.git",
"author": "https://github.com/engelsystem/engelsystem/contributors",
"license": "GPL-2.0-or-later",
2018-01-03 01:19:31 +01:00
"scripts": {
2021-08-17 14:46:42 +02:00
"build": "NODE_ENV=production yarn build:webpack",
2018-09-10 19:53:19 +02:00
"build:webpack": "webpack",
2022-11-26 14:50:15 +01:00
"build:watch": "webpack --watch",
2023-01-24 14:26:10 +01:00
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:ec",
2022-12-22 18:28:51 +01:00
"lint:eslint": "eslint .",
2023-02-15 17:51:15 +01:00
"lint:prettier": "prettier --check resources/assets webpack.config.js",
2023-01-29 17:02:53 +01:00
"lint:ec": "ec",
2022-12-22 18:28:51 +01:00
"lint:fix": "yarn lint:fix:eslint && yarn lint:fix:prettier",
"lint:fix:eslint": "eslint --fix .",
2023-02-15 17:51:15 +01:00
"lint:fix:prettier": "prettier --write resources/assets webpack.config.js"
2018-01-03 01:19:31 +01:00
},
"dependencies": {
2022-11-27 19:42:09 +01:00
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"bootstrap-icons": "^1.10.3",
"choices.js": "^10.2.0",
"core-js": "^3.27.2"
2018-01-03 01:19:31 +01:00
},
"devDependencies": {
"@babel/core": "^7.20.12",
2022-11-26 14:50:15 +01:00
"@babel/eslint-parser": "^7.19.1",
2022-11-27 19:42:09 +01:00
"@babel/preset-env": "^7.20.2",
"autoprefixer": "^10.4.13",
2023-02-06 23:47:54 +01:00
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
2023-02-06 23:47:54 +01:00
"css-minimizer-webpack-plugin": "^4.2.2",
2023-01-24 14:26:10 +01:00
"editorconfig-checker": "^5.0.1",
2023-02-06 23:47:54 +01:00
"eslint": "^8.33.0",
2022-11-26 14:50:15 +01:00
"eslint-plugin-editorconfig": "^4.0.2",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.21",
2023-02-06 23:47:54 +01:00
"postcss-loader": "^7.0.2",
"prettier": "^2.8.3",
2022-01-28 14:14:06 +01:00
"resolve-url-loader": "^5.0.0",
2023-02-06 23:47:54 +01:00
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
2022-11-27 19:42:09 +01:00
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
2023-02-06 23:47:54 +01:00
"webpack-cli": "^5.0.1",
"webpack-manifest-plugin": "^5.0.0"
2018-01-03 01:19:31 +01:00
}
}