2021-09-16 07:26:57 -07:00
|
|
|
{
|
2021-11-18 07:14:45 -08:00
|
|
|
"name": "DistrictCentral",
|
2021-09-16 07:26:57 -07:00
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"start": "meteor run",
|
2022-03-09 07:55:26 -08:00
|
|
|
"build": "npm install --product && meteor build --architecture os.linux.x86_64 --server-only ../",
|
2021-09-16 07:26:57 -07:00
|
|
|
"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"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-03-09 07:55:26 -08:00
|
|
|
"@babel/runtime": "^7.16.7",
|
2021-09-16 07:26:57 -07:00
|
|
|
"connect-route": "^0.1.5",
|
2022-04-02 10:29:35 -07:00
|
|
|
"html5-qrcode": "^2.2.0",
|
2022-03-09 07:55:26 -08:00
|
|
|
"jquery": "^3.6.0",
|
2021-09-16 07:26:57 -07:00
|
|
|
"meteor-node-stubs": "^1.0.0",
|
2022-04-02 10:29:35 -07:00
|
|
|
"mongodb": "^4.4.1",
|
2022-03-09 07:55:26 -08:00
|
|
|
"svelte": "^3.46.4",
|
2022-04-02 10:29:35 -07:00
|
|
|
"tinro": "^0.6.12",
|
2022-03-09 07:55:26 -08:00
|
|
|
"ws": "^8.4.2"
|
2021-09-16 07:26:57 -07:00
|
|
|
},
|
|
|
|
|
"meteor": {
|
|
|
|
|
"mainModule": {
|
|
|
|
|
"client": "client/main.js",
|
|
|
|
|
"server": "server/main.js"
|
|
|
|
|
},
|
2022-04-02 10:29:35 -07:00
|
|
|
"testModule": "tests/main.js",
|
|
|
|
|
"nodeModules": {
|
|
|
|
|
"recompile": {
|
|
|
|
|
"svelte": [
|
|
|
|
|
"legacy"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"svelte:compiler": {
|
|
|
|
|
"extensions": [
|
|
|
|
|
"svelte",
|
|
|
|
|
"html"
|
|
|
|
|
],
|
|
|
|
|
"hydratable": true,
|
|
|
|
|
"css": true
|
2021-09-16 07:26:57 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-04-02 10:29:35 -07:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
|
"rollup-plugin-css-only": "^3.1.0"
|
2021-09-16 07:26:57 -07:00
|
|
|
}
|
|
|
|
|
}
|