forked from hoogi91/spreadsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"name": "asset-build",
"version": "1.0.0",
"description": "",
"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 --ext .js Resources/Private/Assets/JavaScript/",
"lint-fix": "eslint --fix --ext .js Resources/Private/Assets/JavaScript/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-transform-object-assign": "^7.24.6",
"@babel/plugin-transform-parameters": "^7.24.6",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.24.6",
"babel-loader": "^9.1.3",
"core-js": "^3.37.1",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.2.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"> 1% and last 2 versions",
"Firefox ESR",
"not ie <= 11",
"not dead"
]
}