socialtree/package.json

25 lines
651 B
JSON
Raw Normal View History

2022-10-13 14:59:02 +01:00
{
"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",
2022-10-13 20:37:37 +01:00
"scripts": {
"start": "node src/index.js",
2022-10-18 08:20:54 +01:00
"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"
2022-10-13 20:37:37 +01:00
},
2022-10-13 14:59:02 +01:00
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.2",
2022-10-18 08:20:54 +01:00
"js-yaml": "^4.1.0",
"sass": "^1.55.0"
2022-10-13 20:37:37 +01:00
},
"devDependencies": {
"nodemon": "^2.0.20"
2022-10-13 14:59:02 +01:00
}
}