-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "asset-build",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"build": "webpack build --mode production",
"build-watch": "webpack watch --mode production",
"build-dev": "webpack build --mode development",
"build-dev-watch": "webpack watch --mode development",
"lint": "eslint Resources/Private/Assets/JavaScript/",
"lint-fix": "eslint --fix Resources/Private/Assets/JavaScript/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-transform-object-assign": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.7",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"core-js": "^3.39.0",
"eslint": "^9.15.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"> 1% and last 2 versions",
"Firefox ESR",
"not ie <= 11",
"not dead"
],
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"eslint-formatter-unix": "^8.40.0",
"globals": "^15.12.0"
}
}