-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.13 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "meteor-app",
"private": true,
"scripts": {
"start": "meteor run",
"start-trace": "TOOL_NODE_FLAGS=--trace-warnings meteor run",
"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",
"build": "meteor build ../output/svelte --directory",
"vite:setup-env": "cross-env-shell METEOR_PACKAGE_DIRS=\"../../packages/\" BUILD_METEOR_VITE_DEPENDENCY='true'",
"vite:start": "npm run vite:setup-env meteor npm start",
"vite:build": "npm run vite:setup-env meteor npm run build"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@mateothegreat/svelte5-router": "^2.14.1",
"@tailwindcss/postcss": "^4.1.4",
"meteor-node-stubs": "^1.2.1",
"postcss": "^8.5.3",
"postcss-load-config": "^6.0.1",
"svelte": "^5.25.3",
"tailwindcss": "^4.1.4",
"vite": "^6.2.3"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/meteor": "^2.9.8",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-svelte": "^3.3.3",
"flowbite": "^3.1.2",
"flowbite-svelte": "^0.48.6",
"flowbite-svelte-icons": "^2.1.1",
"globals": "^16.0.0",
"meteor-vite": "^3.5.0",
"prettier": "3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"rollup-plugin-visualizer": "^5.14.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js",
"vite": {
"configFile": "vite.config.mjs"
}
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
],
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"quoteProps": "preserve",
"trailingComma": "all",
"bracketSameLine": true,
"arrowParens": "always",
"svelteSortOrder": "options-scripts-markup-styles",
"svelteStrictMode": true,
"svelteIndentScriptAndStyle": true
}
}