forked from conwnet/github1s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "github1s",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@github1s/vscode-web": "0.21.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"chokidar": "^3.5.3",
"clean-css": "^5.3.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"fs-extra": "^10.1.0",
"generate-file-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^5.5.0",
"http-proxy": "^1.18.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"serve-handler": "^6.1.3",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.7.3",
"uglify-js": "^3.17.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"yalc": "^1.0.0-pre.53"
},
"scripts": {
"preinstall": "./scripts/preinstall.sh",
"postinstall": "husky install && ./scripts/postinstall.sh",
"dev": "yarn watch",
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"yalc": "yalc publish vscode-web && yalc add -D @github1s/vscode-web",
"build:vscode": "cd vscode-web && yarn build",
"watch": "rm -rf dist && run-p watch:*",
"watch-vscode": "cd vscode-web && yarn watch",
"watch-with-vscode": "DEV_VSCODE=true run-p watch watch-vscode",
"watch:dev-server": "webpack serve --mode=development",
"watch:github1s-extension": "cd extensions/github1s && yarn dev",
"webpack": "webpack --config webpack.config.js",
"format": "prettier --write .",
"eslint": "eslint --ext .ts --ext .js .",
"test:ci": "start-test watch:dev-server 8080 test",
"test": "cd tests && yarn && yarn jest"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{json.css,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}