-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.84 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.84 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
{
"name": "projectcheck",
"version": "2.0.25",
"description": "Project management and time tracking app for Nextcloud",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"dev": "webpack --mode=development --watch",
"test": "jest",
"lint": "eslint js/",
"lint:fix": "eslint js/ --fix",
"analyze": "webpack --mode=production --analyze",
"clean": "rm -rf dist node_modules/.cache"
},
"keywords": [
"nextcloud",
"project-management",
"time-tracking",
"budget-management"
],
"author": "Nextcloud GmbH",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.0",
"css-loader": "^6.8.0",
"css-minimizer-webpack-plugin": "^5.0.0",
"cssnano": "^6.0.0",
"eslint": "^8.42.0",
"glob": "^10.3.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^30.0.5",
"mini-css-extract-plugin": "^2.7.0",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.0",
"purgecss-webpack-plugin": "^5.0.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^5.88.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"chart.js": "^4.3.0",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"lucide": "^0.542.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"postcss": {
"plugins": {
"autoprefixer": {},
"cssnano": {
"preset": "default"
}
}
}
}