forked from kokokino/meteor3-solid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 914 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 914 Bytes
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
{
"name": "simple-todos-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.23.9",
"@swc/helpers": "^0.5.17",
"bcrypt": "^6.0.0",
"meteor-node-stubs": "^1.2.12",
"picocolors": "^1.1.1",
"solid-js": "^1.9.4"
},
"meteor": {
"mainModule": {
"client": "client/entry-meteor.js",
"server": "server/entry-meteor.js"
},
"testModule": "tests/main.js",
"modern": true
},
"devDependencies": {
"babel-preset-solid": "^1.8.15",
"meteor-vite": "^3.2.1",
"vite": "^6.0.11",
"vite-plugin-solid": "^2.11.0",
"vite-plugin-solid-svg": "^0.8.1"
}
}