-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
{
"name": "timemanager",
"version": "1.0.0",
"description": "A nextcloud app to track worktime.",
"main": "index.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/te-online/timemanager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/te-online/timemanager/issues"
},
"homepage": "https://github.com/te-online/timemanager#readme",
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-classes": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"@nextcloud/auth": "^2.0.0",
"@nextcloud/router": "^2.0.1",
"@prettier/plugin-php": "^0.19.6",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/uuid": "^10.0.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.31.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^29.6.0",
"node-sass": "^9.0.0",
"prettier": "^3.0.0",
"rollup": "^4.22.4",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^4.2.19"
},
"dependencies": {
"@nextcloud/browserslist-config": "^2.0.0",
"@nextcloud/l10n": "^2.1.0",
"@popperjs/core": "^2.11.8",
"csv-parse": "^5.4.0",
"date-fns": "^2.30.0",
"fuse.js": "^6.6.2",
"pjax": "^0.2.8",
"rollup-plugin-inject-process-env": "^1.3.1",
"svelte-popperjs": "^1.3.2",
"svelte-select": "^4.4.7",
"uuid": "^9.0.0"
}
}