socialtree/package.json
2022-10-18 09:20:54 +02:00

25 lines
651 B
JSON

{
"name": "socialtree",
"version": "0.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 & sass --watch src/public/themes:src/dist/style",
"watch-css": "sass --watch src/public/themes:src/dist/style",
"build": "sass src/public/themes:src/dist/style"
},
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"sass": "^1.55.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}