forked from urlaubsverwaltung/urlaubsverwaltung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3 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
{
"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": "NODE_ENV=production webpack --mode production",
"js:dev": "NODE_ENV=development webpack --mode development",
"js:watch": "NODE_ENV=development webpack --mode development --watch",
"css": "NODE_ENV=production postcss src/main/css/{style,login}.css --dir target/classes/static/css",
"css:dev": "NODE_ENV=development postcss src/main/css/{style,login}.css --dir target/classes/static/css",
"css:watch": "onchange -i src/main/css -- npm run css:dev",
"format": "concurrently 'npm:format:*'",
"format:js": "prettier --write src/main/javascript",
"format:css": "prettier --write src/main/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synyx/urlaubsverwaltung.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/synyx/urlaubsverwaltung/issues"
},
"homepage": "https://github.com/synyx/urlaubsverwaltung#readme",
"dependencies": {
"@babel/polyfill": "7.12.1",
"@duetds/date-picker": "1.4.0",
"bootstrap": "3.4.1",
"datalist-polyfill": "1.24.4",
"font-awesome": "4.7.0",
"jquery": "3.6.0",
"jquery-ui": "1.12.1",
"jquery-ui-themes": "1.12.0",
"list.js": "2.3.1",
"postcss-loader": "4.3.0",
"tablesorter": "2.31.3",
"timepicker": "1.13.18",
"underscore": "1.13.1"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.14.7",
"@types/jest": "26.0.24",
"@urlaubsverwaltung/eslint-plugin": "1.2.0",
"autoprefixer": "10.3.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.0.6",
"babel-loader": "8.2.2",
"concurrently": "6.2.0",
"css-loader": "5.2.6",
"cssnano": "5.0.6",
"date-fns": "2.22.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-unicorn": "19.0.1",
"fetch-mock": "9.11.0",
"file-loader": "6.2.0",
"imports-loader": "1.2.0",
"jest": "27.0.6",
"less": "4.1.1",
"less-loader": "7.3.0",
"merge": "2.1.1",
"mini-css-extract-plugin": "1.6.2",
"node-fetch": "2.6.1",
"onchange": "7.1.0",
"optimize-css-assets-webpack-plugin": "6.0.1",
"postcss": "8.3.5",
"postcss-cli": "8.3.1",
"postcss-import": "14.0.2",
"postcss-url": "10.1.3",
"prettier": "2.3.2",
"tailwindcss": "2.2.4",
"terser-webpack-plugin": "4.2.3",
"url-loader": "4.1.1",
"webpack": "4.46.0",
"webpack-assets-manifest": "3.1.1",
"webpack-cli": "4.7.2"
}
}