-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 986 Bytes
/
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": "modpack-utils",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -s",
"watch": "nodemon",
"format": "prettier --write src/**/*.ts",
"lint": "eslint --fix src/**/*.ts"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@octokit/webhooks": "^10.0.4",
"@types/archiver": "^5.3.1",
"@types/glob": "^7.2.0",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@types/rimraf": "^3.0.2",
"@vercel/ncc": "^0.34.0",
"archiver": "^5.3.1",
"axios": "^0.27.2",
"cpy": "^8.1.2",
"dotenv": "^16.0.1",
"dropbox": "^9.4.0",
"extract-zip": "^2.0.1",
"form-data": "^4.0.0",
"glob": "^8.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"yaml": "^2.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"prettier": "^2.3.1"
}
}