forked from urlaubsverwaltung/urlaubsverwaltung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.53 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "urlaubsverwaltung",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.org/synyx/urlaubsverwaltung.png)](https://travis-ci.org/synyx/urlaubsverwaltung) [![Coverage Status](https://coveralls.io/repos/github/synyx/urlaubsverwaltung/badge.svg?branch=master)](https://coveralls.io/github/synyx/urlaubsverwaltung?branch=master)",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/main/webapp",
"build": "NODE_ENV=production webpack --mode production",
"build:dev": "NODE_ENV=development webpack --mode development",
"build:watch": "NODE_ENV=development webpack --mode development --watch"
},
"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.4.0",
"bootstrap": "3.4.1",
"chosen-js": "1.8.7",
"core-js": "2.6.5",
"font-awesome": "4.5.0",
"jquery": "3.4.1",
"jquery-ui": "1.12.1",
"jquery-ui-themes": "1.12.0",
"list.js": "1.3.0",
"tablesorter": "2.29.4",
"timepicker": "1.11.14",
"underscore": "1.8.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "^7.0.0",
"@urlaubsverwaltung/eslint-plugin": "1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "8.0.5",
"babel-plugin-date-fns": "0.2.1",
"babel-plugin-dynamic-import-node": "1.2.0",
"css-loader": "2.1.1",
"date-fns": "1.30.1",
"eslint": "5.15.3",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-unicorn": "8.0.0",
"fetch-mock": "7.3.1",
"file-loader": "3.0.1",
"imports-loader": "0.8.0",
"jest": "24.5.0",
"less": "3.9.0",
"less-loader": "4.1.0",
"merge": "1.2.1",
"mini-css-extract-plugin": "0.5.0",
"moment": "2.22.2",
"node-fetch": "2.3.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"terser-webpack-plugin": "1.2.3",
"url-loader": "1.1.2",
"webpack": "4.28.4",
"webpack-cli": "3.3.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"useBuiltIns": "entry",
"corejs": "2",
"targets": "> 0.25%, not dead"
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"babel-plugin-date-fns"
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"babel-plugin-dynamic-import-node"
]
}
}
},
"jest": {
"roots": [
"<rootDir>/src/main/webapp"
],
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.js",
"!**/__tests__/**",
"!**/WEB-INF/**"
],
"coverageDirectory": "<rootDir>/target/js-coverage",
"testURL": "http://localhost",
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}