forked from elastic/security-documents-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "security-documents-generator",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit",
"start": "tsx src/index",
"lint": "eslint ./src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^8.6.0",
"@faker-js/faker": "^8.0.0",
"@types/lodash-es": "^4.17.12",
"chalk": "^5.2.0",
"cli-progress": "^3.12.0",
"commander": "^10.0.0",
"conf": "^11.0.1",
"fp-ts": "^2.16.5",
"inquirer": "^9.2.13",
"io-ts": "^2.2.21",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^3.3.1",
"p-map": "^7.0.2",
"tsx": "^4.7.1",
"url-join": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/inquirer": "^9.0.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"esbuild": "^0.20.2",
"eslint": "<9.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"typescript": "^5.3.3"
}
}