-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.08 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
{
"name": "imba-base",
"version": "1.0.0",
"description": "A great starting point for a Meteor app with Imba front-end",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "concurrently \"npm run start-*\"",
"reinit-git": "rm -Rf .git && git init",
"remove-meteor": "rm -Rf .meteor",
"npm-packages": "npm i concurrently imba simpl-schema @babel/runtime meteor-node-stubs",
"meteor-packages": "meteor add accounts-password check dburles:collection-helpers aldeed:collection2-core email matb33:collection-hooks",
"setup": "npm run reinit-git && npm run remove-meteor && npm run npm-packages && npm run build && meteor create . && npm run meteor-packages",
"build": "imbac imba -o .",
"start-meteor": "meteor",
"start-imba": "imbac -w imba -o .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.15.4",
"concurrently": "^6.2.1",
"imba": "^2.0.0-alpha.170",
"meteor-node-stubs": "^1.1.0",
"simpl-schema": "^1.12.0"
}
}