forked from JorgenVatle/meteor-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.76 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "vue-example",
"private": true,
"scripts": {
"start": "meteor run",
"build": "meteor build ../output/vue --directory",
"start:production-build": "(cd ../output/vue/bundle && (cd programs/server && meteor npm install) && PORT=4040 ROOT_URL=http://localhost:4040 MONGO_URL=mongodb://127.0.0.1:3001/meteor meteor node main.js)",
"start:new-build": "rm -rf ../output/vue && meteor npm run build && concurrently \"meteor npm run dev\" \"meteor npm run start\"",
"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",
"meteor-vite-internal:setup-env": "cross-env-shell METEOR_PACKAGE_DIRS=\"../../packages/\" BUILD_METEOR_VITE_DEPENDENCY='true'",
"meteor-vite-internal:start": "npm run meteor-vite-internal:setup-env meteor npm start",
"meteor-vite-internal:build": "npm run meteor-vite-internal:setup-env meteor npm run build"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"chalk": "^4.1.2",
"meteor-node-stubs": "^1.2.5",
"meteor-vite": "1.*",
"safe-json-stringify": "^1.2.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@types/meteor": "^1.4.87",
"@types/mocha": "^10.0.1",
"@types/safe-json-stringify": "^1.1.2",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.12",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"tailwindcss": "^3.2.1",
"ts-minitest": "^1.0.0",
"typescript": "^4.6.3",
"vite": "^4.1.5"
},
"meteor": {
"mainModule": {
"client": "client/main.ts",
"server": "server/main.ts"
},
"testModule": "tests/main.js"
}
}