mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-12 02:15:17 +00:00
33 lines
967 B
JSON
33 lines
967 B
JSON
{
|
|
"name": "TODO",
|
|
"description": "TODO",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "sapper dev",
|
|
"build": "sapper build",
|
|
"export": "sapper export",
|
|
"start": "node __sapper__/build",
|
|
"cy:run": "cypress run",
|
|
"cy:open": "cypress open",
|
|
"test": "run-p --race dev cy:run",
|
|
"now": "npm run build:tailwind && SAPPER_TIMESTAMP=$(date +%s%3N) sapper build && now -e SAPPER_TIMESTAMP=$(date +%s%3N)",
|
|
"watch:tailwind": "postcss static/tailwind.css -o static/index.css -w",
|
|
"build:tailwind": "NODE_ENV=production postcss static/tailwind.css -o static/index.css"
|
|
},
|
|
"dependencies": {
|
|
"compression": "^1.7.1",
|
|
"polka": "^0.5.0",
|
|
"sirv": "^0.4.0",
|
|
"tailwindcss": "^1.0.4",
|
|
"@fullhuman/postcss-purgecss": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5",
|
|
"sapper": "^0.27.0",
|
|
"svelte": "^3.0.0",
|
|
"svelte-loader": "^2.9.0",
|
|
"webpack": "^4.7.0",
|
|
"postcss-cli": "^6.1.2"
|
|
}
|
|
}
|