searxng/searx/static/themes/simple/package.json
Alexandre Flament c013256881 [mod] remove common grunt install
Before this commit, there are 3 node_modules directory:
* one in .
* two others in ./searx/statics/themes/*

This is no desirable:
* it declares the npm depdenencies in the shell script.
* dependabot can't updates theses dependencies.
* this is a not standard way to build a package (two different locations for the dependencies).

With this commit and the PR  #150 there is one unique node_modules directory per theme.
2021-06-16 15:39:32 +02:00

28 lines
673 B
JSON

{
"devDependencies": {
"grunt-cli": "^1.4.3",
"grunt": "~1.4.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-jshint": "~3.0.0",
"grunt-contrib-less": "~3.0.0",
"grunt-contrib-uglify": "~5.0.1",
"grunt-contrib-watch": "~1.1.0",
"grunt-webfont": "^1.7.2",
"ionicons-npm": "^2.0.1",
"jslint": "^0.12.1",
"less": "^4.1.1",
"less-plugin-clean-css": "^1.5.1"
},
"dependencies": {
"autocomplete-js": "2.7.1",
"leaflet": "^1.7.1"
},
"scripts": {
"all": "npm install && grunt",
"build": "grunt",
"watch": "grunt watch"
}
}