forked from ackzell/meteor-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "meteor-vue",
"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.15.4",
"@syncfusion/ej2-vue-calendars": "^19.3.46",
"@syncfusion/ej2-vue-gantt": "^19.3.46",
"agenda": "^4.2.1",
"bcrypt": "^5.0.1",
"jquery": "^3.6.0",
"meteor-node-stubs": "^1.1.0",
"simpl-schema": "^1.12.0",
"typescript": "^4.4.3",
"vue": "2.6.14",
"vue-meteor-tracker": "^2.0.0-beta.5",
"vue-router": "^3.5.2",
"vue-router-multi-view": "^0.1.0",
"vuetify": "^2.5.9"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.19.1",
"prettier": "^2.4.1",
"vue-eslint-parser": "^7.11.0"
}
}