-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.09 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"type": "module",
"name": "titra",
"version": "1.0.033",
"private": true,
"scripts": {
"start": "meteor run",
"test": "mocha --reporter mocha-junit-reporter --reporter-options mochaFile=reports/test-results.xml tests/**/*.test.js",
"lint": "eslint . --format checkstyle -o reports/eslint-report.xml",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/runtime": "^7.26.7",
"@dashboardcode/bsmultiselect": "^1.1.18",
"@fortawesome/fontawesome-free": "^6.7.2",
"@fullcalendar/core": "6.1.15",
"@fullcalendar/daygrid": "6.1.15",
"@fullcalendar/interaction": "6.1.15",
"@neovici/nullxlsx": "^3.1.0",
"@popperjs/core": "^2.11.8",
"adm-zip": "^0.5.16",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"cl-editor": "^2.3.0",
"content-type": "^1.0.5",
"date-holidays": "^3.23.20",
"dayjs": "^1.11.13",
"dayjs-precise-range": "^1.0.1",
"docker-names": "^1.2.1",
"file-saver": "^2.0.5",
"frappe-charts": "1.6.2",
"frappe-datatable": "^1.17.18",
"frappe-gantt": "^0.6.1",
"hotkeys-js": "^3.13.9",
"is-dark": "^1.0.4",
"jquery": "3.7.1",
"jquery-serializejson": "^3.2.1",
"ldapjs": "3.0.7",
"math-expression-evaluator": "^2.0.6",
"meteor-node-stubs": "^1.2.12",
"namedavatar": "^1.2.0",
"node-emoji": "^2.2.0",
"quill-delta-to-html": "^0.12.1",
"randomcolor": "^0.6.2",
"raw-body": "^3.0.0",
"sortablejs": "^1.15.6",
"tiny-date-picker": "^3.2.8",
"vm2": "^3.9.19"
},
"devDependencies": {
"mocha": "^10.2.0",
"chai": "^4.3.7",
"mocha-junit-reporter": "^2.0.0",
"eslint": "^8.5.7",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-i18next": "^6.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-meteor": "^7.3.0",
"@babel/eslint-parser": "^7.x.x",
"@babel/core": "^7.x.x",
"@babel/preset-env": "^7.x.x"
},
"eslintConfig": {
"root": true,
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-env"]
},
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"plugins": [
"meteor",
"import",
"i18next"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"apidoc": {
"name": "titra API",
"version": "0.85.0",
"description": "<div class='h5'>This is the official titra API documentation. For more information about the open source timetracking application developed with lots of ❤️ and ☕️ by <a href='https://kromit.at'>kromit</a> checkout <a href='https://titra.io'>titra.io</a>.</div>",
"sampleUrl": "https://app.titra.io"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"mocha": {
"reporter": "mocha-junit-reporter",
"reporter-options": {
"mochaFile": "./reports/test-results.xml"
}
}
}