snipette-crowdfunding-site/package.json

36 lines
1.1 KiB
JSON
Raw Normal View History

2021-12-27 07:09:14 -05:00
{
"name": "snipette-crowdfunding-site",
"version": "1.0.0",
"description": "Website for the Snipette Analog crowdfunding campaign",
"repository": "https://gitlab.com/snipettemag/snipette-crowdfunding-site",
"author": "Badri Sunderarajan <badri@snipettemag.com>",
"license": "MIT",
"scripts": {
2021-12-29 06:52:17 -05:00
"watch": "npm-run-all --parallel 'watch:*'",
"watch:css": "tailwindcss -i src/style.css -o src/assets/css/style.css",
"watch:server": "nodemon server/index.js",
2021-12-27 07:52:54 -05:00
"build": "npm-run-all 'build:*'",
"build:css": "tailwindcss -i src/style.css -o src/assets/css/style.css",
"serve": "yarn build && node server/index.js"
2021-12-27 07:09:14 -05:00
},
"devDependencies": {
2021-12-27 07:52:54 -05:00
"autoprefixer": "^10.4.0",
"nodemon": "^2.0.15",
2021-12-27 07:52:54 -05:00
"npm-run-all": "^4.1.5",
"parcel": "^2.0.1",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.7"
},
"dependencies": {
"@constemi/itsdangerjs": "^0.0.2",
2021-12-29 06:35:51 -05:00
"bookshelf": "^1.2.0",
"dotenv": "^10.0.0",
2021-12-29 06:52:17 -05:00
"express": "^4.17.2",
2021-12-29 06:35:51 -05:00
"knex": "^0.95.15",
"nodemailer": "^6.7.2",
"sqlite3": "^5.0.2",
"twing": "^5.1.0"
2021-12-27 07:09:14 -05:00
}
}