-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "app-deployer",
"version": "1.0.0",
"description": "GitHub Action to deploy Corva Apps to Dev Center",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "esbuild src/main.ts --bundle --platform=node --target=node20 --minify --sourcemap --legal-comments=linked --outfile=dist/index.js",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corva-ai/app-deployer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/corva-ai/app-deployer/issues"
},
"homepage": "https://github.com/corva-ai/app-deployer#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@corva/create-app": "^0.48.0-6",
"axios": "^1.3.2",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.8.0",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
}
}