snip/package.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2020-10-26 16:17:00 +00:00
{
"name": "snip",
"version": "1.0.0",
"description": "A tiny url shortener",
"private": true,
2020-10-29 23:59:31 +00:00
"watch": {
"build_scss": {
"patterns": [
"templates/"
],
"extensions": "scss"
},
"build_webpack": "templates/*.js"
},
2020-10-26 16:17:00 +00:00
"scripts": {
2020-10-29 23:59:31 +00:00
"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"
2020-10-26 16:17:00 +00:00
},
"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",
2020-10-29 23:59:31 +00:00
"node-sass": "^4.14.1",
"npm-watch": "^0.7.0",
2020-10-26 16:17:00 +00:00
"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": {
2020-10-29 23:59:31 +00:00
"@popperjs/core": "^2.5.3",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
2020-10-26 16:17:00 +00:00
"loglevel": "^1.7.0",
2020-10-29 23:59:31 +00:00
"reset-css": "^5.0.1",
"tippy.js": "^6.2.7"
2020-10-26 16:17:00 +00:00
}
}