forked from urlaubsverwaltung/urlaubsverwaltung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.31 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
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
{
"name": "urlaubsverwaltung",
"description": "Paperless absence management",
"private": true,
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/main/javascript",
"lint:report": "eslint src/main/javascript -f json -o target/js-eslint/report.json",
"build": "concurrently 'npm:js' 'npm:css'",
"build:dev": "concurrently 'npm:js:dev' 'npm:css:dev'",
"build:watch": "concurrently 'npm:js:watch' 'npm:css:watch'",
"js": "cross-env NODE_ENV=production webpack --mode production",
"js:dev": "cross-env NODE_ENV=development webpack --mode development",
"js:watch": "cross-env NODE_ENV=development webpack --mode development --watch",
"css": "cross-env NODE_ENV=production postcss src/main/css/style.css --dir target/classes/static/css",
"css:dev": "cross-env NODE_ENV=development postcss src/main/css/style.css --dir target/classes/static/css",
"css:watch": "onchange -i src/main/css -- npm run css:dev",
"format": "concurrently 'npm:format:*'",
"format:html": "prettier --write src/main/resources/templates",
"format:js": "prettier --write src/main/javascript",
"format:css": "prettier --write src/main/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urlaubsverwaltung/urlaubsverwaltung.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/urlaubsverwaltung/urlaubsverwaltung/issues"
},
"homepage": "https://github.com/urlaubsverwaltung/urlaubsverwaltung#readme",
"dependencies": {
"@babel/polyfill": "7.12.1",
"@duetds/date-picker": "1.4.0",
"@hotwired/turbo": "7.3.0",
"@ungap/custom-elements": "1.2.0",
"bootstrap": "3.4.1",
"datalist-polyfill": "1.25.1",
"font-awesome": "4.7.0",
"jquery": "3.6.4",
"lint-staged": "13.2.2",
"postcss-loader": "4.3.0",
"tablesorter": "2.31.3",
"timepicker": "1.14.0",
"underscore": "1.13.6"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/eslint-parser": "7.21.8",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.21.5",
"@types/jest": "29.5.1",
"@urlaubsverwaltung/eslint-plugin": "1.2.0",
"autoprefixer": "10.4.13",
"babel-jest": "29.5.0",
"babel-loader": "8.3.0",
"concurrently": "8.0.1",
"cross-env": "7.0.3",
"css-loader": "5.2.7",
"cssnano": "6.0.1",
"date-fns": "2.30.0",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "46.0.0",
"fetch-mock": "9.11.0",
"file-loader": "6.2.0",
"imports-loader": "1.2.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"less": "4.1.3",
"less-loader": "7.3.0",
"merge": "2.1.1",
"mini-css-extract-plugin": "1.6.2",
"node-fetch": "2.6.9",
"onchange": "7.1.0",
"optimize-css-assets-webpack-plugin": "6.0.1",
"postcss": "8.4.23",
"postcss-cli": "10.1.0",
"postcss-import": "15.1.0",
"postcss-url": "10.1.3",
"prettier": "2.8.8",
"tailwindcss": "3.3.2",
"terser-webpack-plugin": "4.2.3",
"url-loader": "4.1.1",
"webpack": "4.46.0",
"webpack-assets-manifest": "4.0.6",
"webpack-cli": "4.10.0"
},
"lint-staged": {
"*.{js,html,svg,css}": [
"prettier --write"
]
}
}