-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.03 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
{
"name": "owlDatePicker",
"version": "0.1.0",
"description": "Owl based Date Picker",
"main": "public/index.html",
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development"
},
"author": "Mostafa Barmshory",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.19",
"postcss-loader": "^7.0.2",
"regenerator-runtime": "^0.13.11",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"serve": "^14.1.2",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"@kurkle/color": "^0.3.0",
"@odoo/owl": "^2.2.6",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"chart.js": "^4.0.1",
"chartjs-adapter-luxon": "^1.3.0",
"luxon": "^3.1.1",
"resolve-url-loader": "^5.0.0",
"url-loader": "^4.1.1",
"uuid": "^9.0.0"
},
"babel": {
"presets": [
"@babel/typescript",
[
"@babel/env",
{
"modules": false
}
]
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"jest": {
"verbose": false,
"testRegex": "(/src/.*(test|spec))\\.ts?$",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}