33 lines
1 KiB
JSON
33 lines
1 KiB
JSON
{
|
|
"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": {
|
|
"watch": "npm-run-all --parallel 'watch:*'",
|
|
"watch:html": "parcel src/index.htm",
|
|
"watch:css": "tailwindcss -i src/style.css -o src/assets/tailwind.css",
|
|
"watch:server": "node server/index.js",
|
|
"build": "npm-run-all 'build:*'",
|
|
"build:css": "tailwindcss -i src/style.css -o src/assets/tailwind.css",
|
|
"build:html": "parcel build src/index.htm"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"parcel": "^2.0.1",
|
|
"postcss": "^8.4.5",
|
|
"postcss-import": "^14.0.2",
|
|
"tailwindcss": "^3.0.7"
|
|
},
|
|
"dependencies": {
|
|
"bookshelf": "^1.2.0",
|
|
"dotenv": "^10.0.0",
|
|
"express": "^4.17.2",
|
|
"knex": "^0.95.15",
|
|
"sqlite3": "^5.0.2",
|
|
"twing": "^5.1.0"
|
|
}
|
|
}
|