-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.29 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": "github-stargazer",
"private": true,
"version": "0.0.0",
"scripts": {
"watch": "webpack --devtool inline-source-map --mode development --watch",
"build": "webpack --mode production",
"clean": "node -e 'fs.rmSync(`dist`, {recursive:true, force:true})' && node -e 'fs.rmSync(`packages`, {recursive:true, force:true})'",
"lint": "eslint . --ignore-path .gitignore",
"archive": "mkdir -p packages && cd dist && zip -r ../packages/github-stargazer.zip *",
"package": "yarn clean && yarn build && yarn archive",
"test": "jest"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^10.1.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"typescript": "^4.5.4",
"vite": "^2.9.16",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}