wimi/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2023-09-27 02:55:47 +02:00
{
"name": "wimi",
2024-09-03 02:25:41 +02:00
"version": "0.7.0",
2024-04-26 06:07:30 +02:00
"webExt": {
"sourceDir": "build/production"
},
2023-09-27 02:55:47 +02:00
"devDependencies": {
2024-08-03 09:41:31 +02:00
"@testing-library/jest-dom": "^6.4",
"@testing-library/react": "^16.0",
"@types/chrome": "^0.0.269",
"@types/jest": "^29.5",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
2023-09-27 02:55:47 +02:00
"clean-webpack-plugin": "^4.0.0",
2024-08-03 09:41:31 +02:00
"copy-webpack-plugin": "^12.0",
"esbuild-loader": "^4.2",
"eslint": "^9.8",
"eslint-config-prettier": "^9.1",
2024-08-03 09:45:31 +02:00
"eslint-plugin-prettier": "^5.2.1",
2023-09-28 22:10:07 +02:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2024-08-03 09:41:31 +02:00
"prettier": "^3.3",
"ts-jest": "^29.2",
"typescript": "^5.5",
2024-08-03 09:45:31 +02:00
"typescript-eslint": "^8.0.0",
2024-08-03 09:41:31 +02:00
"webpack": "^5.93",
"webpack-cli": "^5.1",
"webpack-merge": "^6.0"
2023-09-27 02:55:47 +02:00
},
"scripts": {
2024-09-03 05:53:13 +02:00
"build:production": "npx webpack --config etc/webpack.production.js",
"build:development": "npx webpack --config etc/webpack.development.js",
"test": "npx jest --config etc/jest.config.js test",
"eslint": "npx eslint --config etc/eslint.config.mjs src/"
2024-08-31 06:23:41 +02:00
},
"dependencies": {
"preact": "^10.23.2"
2023-09-27 02:55:47 +02:00
}
}