forked from Hernanm0g/meteor_vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "meteor_vuetify",
"private": true,
"version": "2.0.31",
"scripts": {
"start": "meteor run --settings settings.json ",
"simulate": "meteor --production --settings settings.json ",
"visualize": "meteor --production --extra-packages bundle-visualizer --settings settings.json",
"test": "rm -rf .coverage && BABEL_ENV=COVERAGE COVERAGE=1 COVERAGE_OUT_HTML=1 COVERAGE_APP_FOLDER=$PWD/ meteor test --driver-package meteortesting:mocha",
"circleci-test": "meteor test --driver-package meteortesting:mocha --once",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha --settings settings.json ",
"createApi": "node ./exec/api/createApi.js"
},
"dependencies": {
"@auth0/auth0-spa-js": "^1.13.6",
"@babel/runtime": "^7.11.2",
"browserslist": "^4.16.3",
"ignore-styles": "^5.0.1",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"meteor-node-stubs": "^1.0.1",
"minify-css-string": "^1.0.0",
"simpl-schema": "^1.10.2",
"vue": "^2.6.12",
"vue-meta": "^2.4.0",
"vue-meteor-tracker": "^2.0.0-beta.5",
"vue-router": "^3.4.9",
"vuetify": "^2.4.3",
"vuex": "^3.6.2"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"devDependencies": {
"@mdi/font": "^5.9.55",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.18.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-vue": "^7.5.0",
"jquery": "^3.5.1",
"puppeteer": "^5.5.0"
},
"babel": {
"env": {
"COVERAGE": {
"plugins": [
"istanbul"
]
}
}
}
}