socialtree/package.json

30 lines
933 B
JSON
Raw Permalink Normal View History

2022-10-13 14:59:02 +01:00
{
"name": "socialtree",
"version": "1.0.0",
2022-10-13 14:59:02 +01:00
"description": "The awesome and damn simple, selfhosted alternative to linktree",
"main": "src/index.js",
"author": "nikurasu",
"type": "module",
"license": "MIT",
2022-10-13 20:37:37 +01:00
"scripts": {
"start": "node src/index.js",
2022-10-21 06:35:18 +01:00
"dev": "nodemon src/index.js & $npm_execpath run watch-css",
2022-10-28 13:39:35 +01:00
"clean": "rimraf src/dist",
"watch-css": "run-when-changed --watch 'src/public/themes/*.scss' --watch 'src/public/util/*.scss' --exec '$npm_execpath run build'",
2022-10-28 13:39:35 +01:00
"build": "sass src/public/themes:src/dist/style & echo \"🎨 Rebuilded your css\"",
"build-prod": "sass --style=compressed src/public/themes:src/dist/style"
2022-10-13 20:37:37 +01:00
},
2022-10-13 14:59:02 +01:00
"dependencies": {
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
2022-10-28 13:39:35 +01:00
"js-yaml": "^4.1.0"
2022-10-13 20:37:37 +01:00
},
"devDependencies": {
2022-10-21 06:35:18 +01:00
"nodemon": "^2.0.20",
2022-10-28 13:39:35 +01:00
"rimraf": "^3.0.2",
"run-when-changed": "^2.1.0",
"sass": "^1.55.0"
2022-10-13 14:59:02 +01:00
}
}