-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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": {
"generate": "node ./dist/index.js",
"build": "esbuild ./src/index.ts --bundle --outfile=dist/index.js --platform=node --external:shelljs",
"watch": "esbuild ./src/index.ts --bundle --outfile=dist/index.js --platform=node --watch --external:shelljs",
"start": "nodemon --watch \"*.ts\" --exec \"ts-node\" ./src/index.ts",
"eslint:fix": "eslint --fix"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/node": "^20.2.5",
"@types/shelljs": "^0.8.12",
"esbuild": "^0.17.19",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.6.0",
"docx": "^8.0.4",
"enquirer": "^2.3.6",
"exceljs": "^4.3.0",
"pptxgenjs": "^3.12.0",
"shelljs": "^0.8.5",
"zip-a-folder": "^1.1.7"
},
"name": "pmsacompetencyhelper",
"description": "by maxthom@",
"version": "1.0.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "ssh://git.amazon.com/pkg/PMSACompetencyHelper"
},
"author": "Maxime THOMAS - maxthom@",
"license": "ISC"
}