Files
DistrictCentral/package.json

62 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "DistrictCentral",
"private": true,
"scripts": {
"start": "meteor run",
"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",
2022-06-07 08:29:53 -07:00
"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",
"connect-route": "^0.1.5",
"dayjs": "^1.11.3",
"html5-qrcode": "^2.2.0",
"jquery": "^3.6.0",
"meteor-node-stubs": "^1.0.0",
"moment": "^2.29.2",
"mongodb": "^4.4.1",
"svelte": "^3.46.4",
2022-06-07 08:29:53 -07:00
"svelte-material-ui": "^6.0.0-beta.16",
"tinro": "^0.6.12",
"underscore": "^1.13.2",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1",
"ws": "^8.4.2"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js",
"nodeModules": {
"recompile": {
"svelte": [
"legacy"
]
}
}
},
"svelte:compiler": {
"extensions": [
"svelte",
"html"
],
"hydratable": true,
"css": true
},
"devDependencies": {
"@smui/common": "^6.0.0-beta.16",
2022-06-29 14:17:30 -07:00
"@smui/select": "^6.0.0-beta.16",
2022-06-07 08:29:53 -07:00
"@smui/textfield": "^6.0.0-beta.16",
"chai": "^4.2.0",
2022-06-07 08:29:53 -07:00
"rollup-plugin-css-only": "^3.1.0",
"smui-theme": "^6.0.0-beta.16"
}
}