36 lines
981 B
JSON
36 lines
981 B
JSON
{
|
|
"name": "extension",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "",
|
|
"scripts": {
|
|
"build": "webpack --config ./webpack.config.js",
|
|
"watch": "webpack --config ./webpack.config.js --watch",
|
|
"build-dev": "webpack --config ./webpack.dev.js",
|
|
"start": "npm run build && webpack serve --config ./webpack.dev.js ",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@babel/core": "7.12.3",
|
|
"@babel/plugin-proposal-class-properties": "7.16.7",
|
|
"@babel/preset-env": "7.12.1",
|
|
"@babel/preset-react": "7.12.1",
|
|
"@babel/preset-typescript": "7.16.7",
|
|
"@types/jest": "27.4.1",
|
|
"babel-loader": "8.1.0",
|
|
"css-loader": "6.7.1",
|
|
"html-webpack-plugin": "5.5.0",
|
|
"jest": "27.5.1",
|
|
"less": "4.1.2",
|
|
"less-loader": "10.2.0",
|
|
"style-loader": "3.3.1",
|
|
"ts-jest": "27.1.4",
|
|
"webpack": "5.70.0",
|
|
"webpack-cli": "4.9.2",
|
|
"webpack-dev-server": "^4.7.4"
|
|
}
|
|
}
|