svelte boilerplate

This commit is contained in:
2021-08-06 20:40:42 +02:00
parent c11ad68acd
commit 27430e4b2e
5 changed files with 137 additions and 5 deletions

View File

@@ -2,9 +2,12 @@
"name": "arne-drums",
"version": "1.0.0",
"description": "Drum beat visualiser and editor",
"main": "main.ts",
"main": "src/main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"validate": "svelte-check"
},
"repository": {
"type": "git",
@@ -12,7 +15,22 @@
},
"author": "Daniel Ledda",
"license": "ISC",
"dependencies": {
"svelte": "^3.42.1"
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^1.0.0",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"svelte-check": "^1.0.0",
"svelte-preprocess": "^4.0.0",
"tslib": "^2.0.0"
"sirv-cli": "^1.0.0",
"typescript": "^4.4.0-dev.20210525"
"source-map-support": "^0.5.19"
}
}
}