forked from Akryum/meteor-vite
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
29 lines (29 loc) · 795 Bytes
/
package.json
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
{
"name": "solid",
"private": true,
"scripts": {
"start": "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"
},
"dependencies": {
"@babel/runtime": "^7.27.0",
"meteor-node-stubs": "^1.2.1",
"solid-js": "^1.9.5",
"vite": "^6.2.5"
},
"meteor": {
"mainModule": {
"client": "client/entry-meteor.js",
"server": "server/entry-meteor.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"babel-preset-solid": "^1.5.4",
"meteor-vite": "^3.6.1",
"vite-plugin-solid": "^2.11.6",
"vite-plugin-solid-svg": "^0.4.1"
}
}