forked from akeeba/panopticon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.06 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
{
"name": "akeeba-panopticon",
"description": "Akeeba Panopticon",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/akeeba/panopticon.git"
},
"engines": {
"node": ">=16",
"npm": ">=8.5.5"
},
"browserslist": [
"last 2 major version",
"not ie < 11"
],
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.23.6",
"@fortawesome/fontawesome-free": "^6.4.0",
"ace-builds": "^1.35.0",
"babel-preset-minify": "^0.5.1",
"bootstrap": "^5.3.2",
"choices.js": "^10.2.0",
"core-js": "^3.34.0",
"petite-vue": "^0.4.1",
"tinymce": "^7.2.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": {
"version": "3.9",
"proposals": true
},
"modules": false
}
],
[
"minify",
{
"builtIns": false,
"removeConsole": false
}
]
],
"comments": false,
"sourceType": "unambiguous",
"ignore": [
"**/bootstrap.bundle.*",
"**/*.min.js",
"**/*.min.css"
]
}
}