-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.49 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
{
"name": "complex-todos-svelte",
"private": true,
"scripts": {
"start": "meteor -s settings.json --port 3000",
"test": "TEST_WATCH=1 meteor test -s settings.json --driver-package meteortesting:mocha",
"test:headless": "meteor test --once -s settings.json --driver-package meteortesting:mocha",
"e2e": "npx cypress open",
"e2e:headless": "npx cypress run",
"visualize": "meteor -s settings.json --production --extra-packages bundle-visualizer",
"lint": "npx oxlint --import-plugin .",
"lint:fix": "npx oxlint --import-plugin . --fix"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@swc/helpers": "^0.5.19",
"bcrypt": "^6.0.0",
"meteor-node-stubs": "^1.2.27",
"node-cache": "^5.1.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@meteorjs/rspack": "^2.0.1",
"@rsdoctor/rspack-plugin": "^1.5.7",
"@rspack/cli": "^1.7.8",
"@rspack/core": "^1.7.8",
"@skeletonlabs/skeleton": "^4.13.0",
"@skeletonlabs/skeleton-svelte": "^4.13.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.2",
"chai": "^5.2.0",
"oxlint": "^1.56.0",
"postcss": "^8.5.8",
"postcss-load-config": "^6.0.1",
"svelte": "^5.53.10",
"svelte-check": "^4.4.5",
"svelte-loader": "^3.2.4",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.2.2"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js",
"modern": true
}
}