aux-search/frontend/package.json
github-actions[bot] 84ce7fdf52
Update npm dependencies (also flake.lock: Update) (#532)
* flake.lock: Update

Flake lock file updates:

• Updated input 'flake-utils':
    'github:numtide/flake-utils/c0e246b9b83f637f4681389ecabcb2681b4f3af0' (2022-08-07)
  → 'github:numtide/flake-utils/6ee9ebb6b1ee695d2cacc4faa053a7b9baa76817' (2022-10-29)
• Updated input 'nixos-org-configurations':
    'github:NixOS/nixos-org-configurations/569797100aac69780a12542c2143bb741380d4ec' (2022-08-17)
  → 'github:NixOS/nixos-org-configurations/cebfd15c30724cadacf85b5fd950dc1070c4eb7d' (2022-10-26)
• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/f3d0897be466aa09a37f6bf59e62c360c3f9a6cc' (2022-08-25)
  → 'github:NixOS/nixpkgs/448a599c49978c2794401bfc3a2e1fba1a8663be' (2022-10-28)

* Switch from yarn to npm for frontend

also update all the npm dependencies

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rok Garbas <rok@garbas.si>
2022-11-03 22:26:58 +01:00

58 lines
1.6 KiB
JSON

{
"name": "nixos-search",
"version": "1.0.0",
"description": "Search NixOS packages and options.",
"author": "Rok Garbas <rok@garbas.si>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NixOS/nixos-search"
},
"main": "index.js",
"scripts": {
"analyse": "elm-analyse -s -p 3001 -o",
"build": "webpack",
"dev": "webpack serve --port 3000 --config config/webpack.dev.js",
"nodebug": "webpack serve --port 3000 --config config/webpack.dev.js --env nodebug",
"prod": "NODE_ENV=production webpack --config config/webpack.prod.js",
"start": "npm run dev",
"test": "elm-test"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^3.3.1",
"elm": "^0.19.1-5",
"elm-reloader": "^1.0.0",
"elm-test": "^0.19.1-revision9",
"elm-webpack-loader": "^8.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"postcss-loader": "^6.2.1",
"resolve-url-loader": "^4.0.0",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=12"
},
"prettier": {
"tabWidth": 4
}
}