-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 986 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
{
"name": "vulcan-meteor-next-transition",
"version": "0.0.1",
"description": "This repository demoes using a Vulcan Next frontend with a legacy Vulcan Meteor backend. This is targeted at existing Vulcan application that needs a progressive migration.",
"main": "index.js",
"scripts": {
"start:backend": "cd ./meteor-backend; meteor npm run start -- --port=3001",
"start:frontend": "cd ./next-frontend; open-cli http://localhost:3000/meteor-demo; yarn run dev",
"start": "concurrently \"yarn run start:backend\" \"yarn run start:frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/VulcanJS/vulcan-meteor-next-transition.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/VulcanJS/vulcan-meteor-next-transition/issues"
},
"homepage": "https://github.com/VulcanJS/vulcan-meteor-next-transition#readme",
"devDependencies": {
"concurrently": "^6.2.0",
"open-cli": "^6.0.1"
}
}