snip/package.json
Armin Friedl 7ecab10a48
All checks were successful
continuous-integration/drone/push Build is passing
Working shortener with some style
2020-10-30 00:59:31 +01:00

48 lines
1.3 KiB
JSON

{
"name": "snip",
"version": "1.0.0",
"description": "A tiny url shortener",
"private": true,
"watch": {
"build_scss": {
"patterns": [
"templates/"
],
"extensions": "scss"
},
"build_webpack": "templates/*.js"
},
"scripts": {
"build_scss": "node-sass snip/templates -o snip/static",
"build_webpack": "webpack --config webpack.dev.js",
"watch": "npm-watch",
"publish": "node-sass snip/templates -o snip/static && webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git@git.friedl.net:incubator/snip.git"
},
"author": "Armin Friedl",
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.2",
"gulp": "^4.0.2",
"node-sass": "^4.14.1",
"npm-watch": "^0.7.0",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.3"
},
"dependencies": {
"@popperjs/core": "^2.5.3",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"loglevel": "^1.7.0",
"reset-css": "^5.0.1",
"tippy.js": "^6.2.7"
}
}