forked from opensumi/shortcuts-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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": "shortcuts-guard",
"version": "0.0.5",
"description": "Solve the most commonly used shortcuts conflict caused by OpenSumi IDE and the Chrome browser.",
"scripts": {
"check-version": "ts-node ./scripts/check-version",
"build": "yarn lint && webpack --config webpack/webpack.prod.js",
"lint": "eslint src/**/*{.js,jsx,ts,tsx}",
"lint:fix": "eslint src/**/*{.js,jsx,ts,tsx} --fix",
"prepare": "husky install",
"style": "prettier --write .",
"style:check": "prettier --check .",
"watch": "webpack --config webpack/webpack.dev.js --watch"
},
"license": "MIT",
"dependencies": {
"@opensumi/ide-components": "2.19.2-rc-1658496358.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/chrome": "0.0.158",
"@types/fs-extra": "^9.0.13",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.3",
"style-loader": "^3.3.1",
"ts-loader": "^8.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.4.3 ",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0",
"yargs": "^17.6.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}