-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"scripts": {
"lint-js": "node_modules/.bin/eslint . --ext .js,.ts",
"lint-tsc": "node_modules/.bin/tsc --noEmit",
"build": "ncc build src/index.ts -o dist",
"format": "prettier . --write"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@aws-sdk/client-s3": "^3.665.0",
"@aws-sdk/s3-request-presigner": "^3.665.0",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@shopify/themekit": "^1.1.10",
"@types/archiver": "^5.3.4",
"@types/fs-extra": "^11.0.4",
"@vercel/ncc": "^0.36.1",
"archiver": "^5.3.2",
"axios": "^0.27.2",
"eslint-config-prettier": "^8.10.0",
"fs-extra": "^11.2.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-import": "^2.31.0",
"prettier": "3.0.0",
"typescript": "^5.6.2"
}
}