diff options
author | Sam Light <samlight1994@gmail.com> | 2025-04-01 22:03:15 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-04-01 22:03:15 +0100 |
commit | f612507c8f6ee870d1ce70e0a9f9cd0d9903a2fb (patch) | |
tree | 22f0fae95d2ec2e34571f9e086281a09c9a8ba80 /package.json | |
parent | 70e1322a5a185bfa368fdce530059c79455f370b (diff) |
Created webpack build for sass
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..5cb6d1a --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "@lightscale/laralight-tables", + "version": "1.0.0", + "description": "", + "repository": { + "type": "git", + "url": "git@lightscale.co.uk:laralight-tables" + }, + "license": "MIT", + "author": "Sam Light <sam@lightscale.co.uk>", + "type": "module", + "main": "index.js", + "directories": { + "test": "tests" + }, + "scripts": { + "watch": "webpack --mode=development --watch", + "build": "webpack --mode=development", + "prod": "webpack --mode=production --progress" + }, + "devDependencies": { + "@lightscale/eslint-config": "^1.0.2", + "@lightscale/webpack-config": "^1.0.0" + } +} |