30 lines
933 B
JSON
30 lines
933 B
JSON
{
|
|
"name": "socialtree",
|
|
"version": "1.0.0",
|
|
"description": "The awesome and damn simple, selfhosted alternative to linktree",
|
|
"main": "src/index.js",
|
|
"author": "nikurasu",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon src/index.js & $npm_execpath run watch-css",
|
|
"clean": "rimraf src/dist",
|
|
"watch-css": "run-when-changed --watch 'src/public/themes/*.scss' --watch 'src/public/util/*.scss' --exec '$npm_execpath run build'",
|
|
"build": "sass src/public/themes:src/dist/style & echo \"🎨 Rebuilded your css\"",
|
|
"build-prod": "sass --style=compressed src/public/themes:src/dist/style"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.0.3",
|
|
"ejs": "^3.1.8",
|
|
"express": "^4.18.2",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.20",
|
|
"rimraf": "^3.0.2",
|
|
"run-when-changed": "^2.1.0",
|
|
"sass": "^1.55.0"
|
|
}
|
|
}
|