2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-12-24 21:23:19 +00:00
This commit is contained in:
2021-11-05 22:15:22 +01:00
parent b20935df74
commit 532bcc259b
17 changed files with 18150 additions and 1 deletions

24
home/package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "your.repo.name",
"version": "0.0.1",
"description": "Your repo description",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"setup": "gem install bundler && bundle install && npm i",
"start": "concurrently --kill-others \"npm run css:dev\" \"jekyll serve\"",
"build": "npm run css:rel && jekyll build",
"css:dev": "parcel watch styles/index.css --no-source-maps",
"css:rel": "parcel build styles/index.css --no-source-maps"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^9.8.6",
"concurrently": "^5.3.0",
"parcel-bundler": "^1.12.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.4"
},
"resolutions": {
"node-forge": "0.10.0"
}
}