aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorIndrajith K L2018-02-15 14:24:00 +0530
committerIndrajith K L2018-02-15 14:24:00 +0530
commit506c63b251aaf537015aa7c05e1cab80d435e35d (patch)
treebfb1b9af9f3596c445dc256d7858696c571b0590 /package.json
downloadsvelte-app-506c63b251aaf537015aa7c05e1cab80d435e35d.tar.gz
svelte-app-506c63b251aaf537015aa7c05e1cab80d435e35d.tar.bz2
svelte-app-506c63b251aaf537015aa7c05e1cab80d435e35d.zip
Initial Commit - Fixed the 'npm run dev' command issue. Original script doesn't build files when changed.
Diffstat (limited to 'package.json')
-rw-r--r--package.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..122e42e
--- /dev/null
+++ b/package.json
@@ -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": ""
+ }
+}