Initial Commit - Fixed the 'npm run dev' command issue. Original script doesn't build files when changed.

This commit is contained in:
Indrajith K L
2018-02-15 14:24:00 +05:30
commit 506c63b251
11 changed files with 2118 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "svelte-app",
"version": "1.0.0",
"devDependencies": {
"rollup": "^0.53.2",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-svelte": "^4.0.0",
"rollup-plugin-uglify": "^2.0.1",
"serve": "^6.4.3",
"svelte": "^1.50.0"
},
"scripts": {
"build": "rollup -c",
"rollups": "./node_modules/.bin/rollup -w -c",
"dev": "npm run rollups | npm run start",
"start": "serve public"
},
"author": {
"name": "Indrajith K L",
"email": ""
}
}