Added SMUI components to the mix.

This commit is contained in:
2022-06-07 08:29:53 -07:00
parent 64f18ebd0f
commit 11fbfcfac0
17 changed files with 22263 additions and 6 deletions

View File

@@ -6,7 +6,10 @@
"build": "npm install --product && meteor build --architecture os.linux.x86_64 --server-only ../",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
"visualize": "meteor --production --extra-packages bundle-visualizer",
"prepare": "npm run smui-theme-light && npm run smui-theme-dark",
"smui-theme-light": "smui-theme compile client/theme/smui.css -i client/theme-src",
"smui-theme-dark": "smui-theme compile client/theme/smui-dark.css -i client/theme-src/dark"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
@@ -17,6 +20,7 @@
"moment": "^2.29.2",
"mongodb": "^4.4.1",
"svelte": "^3.46.4",
"svelte-material-ui": "^6.0.0-beta.16",
"tinro": "^0.6.12",
"underscore": "^1.13.2",
"winston": "^3.7.2",
@@ -46,7 +50,9 @@
"css": true
},
"devDependencies": {
"@smui/textfield": "^6.0.0-beta.16",
"chai": "^4.2.0",
"rollup-plugin-css-only": "^3.1.0"
"rollup-plugin-css-only": "^3.1.0",
"smui-theme": "^6.0.0-beta.16"
}
}